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

Update page 'Home'

fox 2020-09-06 07:12:35 +00:00
parent effb8486d7
commit c90720e426

20
Home.md

@ -58,6 +58,26 @@ A common pattern is shared nginx doing SSL termination, etc.
}
```
Apache:
```
a2enmod proxy
a2enmod proxy_http
```
```apache
<VirtualHost *:80>
ServerName domain.com
ProxyPreserveHost On
ProxyRequests Off
# Server IP + the exposed port of docker container
ProxyPass / http://127.0.0.1:8280/
ProxyPassReverse / http://127.0.0.1:8280/
</VirtualHost>
```
You will need to set ``SELF_URL_PATH`` to a correct (i.e. visible from the outside) value in the ``.env`` file.
### Stock Caddy container doesn't work on Raspberry Pi