Update page 'Home'

master
fox 3 years ago
parent 0fa8ad4e93
commit 800db9e758

@ -61,15 +61,15 @@ HTTP_PORT=127.0.0.1:8280
##### Nginx:
```nginx
location /tt-rss/ {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://127.0.0.1:8280/tt-rss/;
break;
}
location /tt-rss/ {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://127.0.0.1:8280/tt-rss/;
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:
@ -84,9 +84,9 @@ If you want to pass entire nginx virtual host to tt-rss, put `/` in the location
```nginx
location / {
...
}
location / {
...
}
```
##### Apache (this assumes you're using HTTPS):

Loading…
Cancel
Save