Update page 'Home'

master
fox 4 years ago
parent 0fa8ad4e93
commit 800db9e758

@ -61,15 +61,15 @@ HTTP_PORT=127.0.0.1:8280
##### Nginx: ##### Nginx:
```nginx ```nginx
location /tt-rss/ { location /tt-rss/ {
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr; proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://127.0.0.1:8280/tt-rss/; proxy_pass http://127.0.0.1:8280/tt-rss/;
break; break;
} }
``` ```
Note: if you run into problems with global PHP-to-FPM handler taking priority over proxied location, define tt-rss location like this so it takes higher priority: Note: if you run into problems with global PHP-to-FPM handler taking priority over proxied location, define tt-rss location like this so it takes higher priority:
@ -84,9 +84,9 @@ If you want to pass entire nginx virtual host to tt-rss, put `/` in the location
```nginx ```nginx
location / { location / {
... ...
} }
``` ```
##### Apache (this assumes you're using HTTPS): ##### Apache (this assumes you're using HTTPS):

Loading…
Cancel
Save