mirror of
https://git.tt-rss.org/fox/ttrss-docker-compose
synced 2025-07-06 13:29:53 +02:00
Update page 'Home'
parent
effb8486d7
commit
c90720e426
1 changed files with 20 additions and 0 deletions
20
Home.md
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue