Update Home

master
Andrew Dolgov 2 years ago
parent 78b9040d29
commit 669c437e89

@ -195,9 +195,9 @@ Similar issues may be also caused by Docker `iptables` functionality either bein
### How do I put this container behind a reverse proxy?
A common pattern is shared nginx doing SSL termination, etc. Don't forget to pass `X-Forwarded-Proto` to the container if you're using HTTPS, otherwise tt-rss would generate plain HTTP URLs.
Address and port correspond to `HTTP_PORT` in `.env`, default:
- Don't forget to pass `X-Forwarded-Proto` to the container if you're using HTTPS, otherwise tt-rss would generate plain HTTP URLs.
- You will need to set ``SELF_URL_PATH`` to a correct (i.e. visible from the outside) value in the ``.env`` file.
- Address and port correspond to `HTTP_PORT` in `.env`, default:
```ini
HTTP_PORT=127.0.0.1:8280
@ -247,32 +247,19 @@ server {
Note that `proxy_pass` in this example points to container website root.
##### Apache (this assumes you're using HTTPS):
##### Apache
```
a2enmod proxy
a2enmod proxy_http
```
```apache
<VirtualHost *>
ServerName domain.com
...
ProxyPreserveHost On
ProxyRequests Off
RequestHeader set X-Forwarded-Proto https
# Server IP + the exposed port of docker container
ProxyPass / http://127.0.0.1:8280/
ProxyPassReverse / http://127.0.0.1:8280/
</VirtualHost>
<IfModule mod_proxy.c>
<Location /tt-rss>
ProxyPreserveHost On
ProxyPass http://localhost:8280/tt-rss
ProxyPassReverse http://localhost:8280/tt-rss
RequestHeader set "X-Forwarded-Proto" expr=%{REQUEST_SCHEME}
</Location>
</IfModule>
```
You will need to set ``SELF_URL_PATH`` to a correct (i.e. visible from the outside) value in the ``.env`` file.
### I have internal web services tt-rss is complaining about (URL is invalid, loopback address, disallowed ports)
Put your local services on the same docker network with tt-rss, then access them by service (= host) names, i.e. `http://rss-bridge/`.

Loading…
Cancel
Save