Update 'README.md'
This commit is contained in:
parent
0deb1d6736
commit
a0fde5fe07
16
README.md
16
README.md
|
@ -70,6 +70,22 @@ volumes:
|
||||||
|
|
||||||
Copy and/or git clone any third party plugins into ``plugins.local`` as usual.
|
Copy and/or git clone any third party plugins into ``plugins.local`` as usual.
|
||||||
|
|
||||||
|
### How do I put this container behind a reverse proxy?
|
||||||
|
|
||||||
|
A common pattern is shared nginx doing SSL termination, etc.
|
||||||
|
|
||||||
|
```
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
- support for sending mail somehow (smtp mailer?)
|
- support for sending mail somehow (smtp mailer?)
|
||||||
|
|
Loading…
Reference in New Issue