Local ports for Nextcloud and TTRSS changed; fixed issues with reverse proxy and HTTPS in TTRSS.

This commit is contained in:
Jonathan Chan 2021-03-03 05:14:21 +00:00
parent 6a2097232c
commit 4911991bea
2 changed files with 3 additions and 2 deletions

View File

@ -5,7 +5,7 @@ server {
add_header Strict-Transport-Security "max-age=15552000; includeSubDomains" always;
location / {
proxy_pass http://localhost:8080;
proxy_pass http://localhost:8000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}

View File

@ -1,9 +1,10 @@
server {
server_name rss.ionathan.ch;
location / {
proxy_pass http://localhost:8181;
proxy_pass http://localhost:8080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
}