Update core configuration files
- Update CLAUDE.md with comprehensive homelab documentation - Update TODO.md with current task status - Configure copyparty file server settings - Update nginx reverse proxy configuration - Refresh homelab homepage - Update services documentation
This commit is contained in:
@@ -31,35 +31,41 @@
|
||||
hoborg: AdminPass2024!
|
||||
|
||||
[/shared]
|
||||
/home/hoborg/shared
|
||||
/mnt/nas/shared
|
||||
accs:
|
||||
rw: guest
|
||||
rwmd: hoborg
|
||||
|
||||
[/documents]
|
||||
/home/hoborg/Documents
|
||||
/mnt/nas/documents
|
||||
accs:
|
||||
rwmd: hoborg
|
||||
|
||||
[/music]
|
||||
/home/hoborg/Music
|
||||
/mnt/nas/music
|
||||
accs:
|
||||
rw: guest
|
||||
rwmd: hoborg
|
||||
|
||||
[/videos]
|
||||
/home/hoborg/Videos
|
||||
/mnt/nas/videos
|
||||
accs:
|
||||
rw: guest
|
||||
rwmd: hoborg
|
||||
|
||||
[/private]
|
||||
/home/hoborg/private
|
||||
/mnt/nas/private
|
||||
accs:
|
||||
rwmd: hoborg
|
||||
|
||||
[/pictures]
|
||||
/home/hoborg/Pictures
|
||||
/mnt/nas/pictures
|
||||
accs:
|
||||
rw: guest
|
||||
rwmd: hoborg
|
||||
|
||||
[/torrent]
|
||||
/mnt/nas/torrent
|
||||
accs:
|
||||
rw: guest
|
||||
rwmd: hoborg
|
||||
|
||||
@@ -21,6 +21,25 @@ server {
|
||||
add_header X-Content-Type-Options "nosniff" always;
|
||||
add_header X-XSS-Protection "1; mode=block" always;
|
||||
|
||||
# qBittorrent Web UI
|
||||
location /qbt/ {
|
||||
proxy_pass http://127.0.0.1:8080/;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_set_header X-Forwarded-Host $host;
|
||||
|
||||
# WebSocket support for real-time updates
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
|
||||
# qBittorrent specific settings
|
||||
proxy_cookie_path / "/qbt/";
|
||||
proxy_redirect off;
|
||||
}
|
||||
|
||||
# Main landing page - highest priority
|
||||
location / {
|
||||
root /var/www/homelab;
|
||||
@@ -157,6 +176,7 @@ server {
|
||||
proxy_set_header Connection "upgrade";
|
||||
}
|
||||
|
||||
|
||||
ssl_certificate /etc/letsencrypt/live/ak-homelab.duckdns.org/fullchain.pem; # managed by Certbot
|
||||
ssl_certificate_key /etc/letsencrypt/live/ak-homelab.duckdns.org/privkey.pem; # managed by Certbot
|
||||
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
||||
|
||||
@@ -150,6 +150,11 @@
|
||||
<h3>Jellyfin</h3>
|
||||
<p>Movies, Music & TV Shows</p>
|
||||
</a>
|
||||
<a href="/transmission/" class="service">
|
||||
<i class="fas fa-download"></i>
|
||||
<h3>Transmission</h3>
|
||||
<p>Torrent Downloads</p>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -180,6 +185,11 @@
|
||||
<h3>NAS Storage</h3>
|
||||
<p>Network Attached Storage</p>
|
||||
</a>
|
||||
<a href="http://localhost:8384/" class="service admin" target="_blank">
|
||||
<i class="fas fa-sync-alt"></i>
|
||||
<h3>Syncthing</h3>
|
||||
<p>File Synchronization</p>
|
||||
</a>
|
||||
<a href="http://192.168.0.1" class="service admin" target="_blank">
|
||||
<i class="fas fa-network-wired"></i>
|
||||
<h3>Router</h3>
|
||||
|
||||
Reference in New Issue
Block a user