1
0
Fork 0
mirror of https://git.tt-rss.org/fox/ttrss-docker-compose synced 2025-07-02 13:39:53 +02:00

Update page 'Home'

fox 2020-12-11 12:51:31 +00:00
parent 0fa8ad4e93
commit 800db9e758

22
Home.md

@ -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):