Fix missing newlines at end of multiple configuration and HTML files

This commit is contained in:
Nik Afiq 2026-01-24 20:10:25 +09:00
parent 6c606cf78d
commit 071e52a0d8
11 changed files with 12 additions and 14 deletions

View File

@ -25,4 +25,4 @@ server {
location / {
try_files $uri $uri/ =404;
}
}
}

View File

@ -92,4 +92,4 @@
<a href="/">Return to Home</a>
</div>
</body>
</html>
</html>

View File

@ -175,4 +175,4 @@
</div>
</div>
</body>
</html>
</html>

View File

@ -95,4 +95,4 @@
</div>
</main>
</body>
</html>
</html>

View File

@ -110,4 +110,4 @@
</div>
</main>
</body>
</html>
</html>

View File

@ -70,15 +70,15 @@ server {
# redirect /watch-party -> /watch-party/
location = /watch-party { return 302 /watch-party/; }
# proxy ONLY /watch-party/*, keeping the prefix
location ^~ /watch-party/ {
proxy_pass http://watchparty_upstream; # ← no trailing slash (preserve /watch-party)
include snippets/proxy-common.conf;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Prefix /watch-party;
# For Vite HMR / websockets
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;

View File

@ -133,4 +133,4 @@ server {
location / {
return 404;
}
}
}

View File

@ -15,4 +15,4 @@ proxy_send_timeout 600;
send_timeout 600;
# Dont cache proxied errors by mistake
proxy_buffering off;
proxy_buffering off;

View File

@ -32,4 +32,4 @@ server {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
}

View File

@ -1,4 +1,3 @@
# Block everything by default
User-agent: *
Disallow: /
User-agent: GPTBot
@ -16,4 +15,4 @@ Disallow: /
User-agent: Google-Extended
Disallow: /
User-agent: Applebot-Extended
Disallow: /
Disallow: /

View File

@ -29,4 +29,3 @@ upstream djellyfin_upstream {
server 127.0.0.1:8096;
keepalive 32;
}