2024-04-28 01:43:53 -04:00
|
|
|
## Start of configuration add by letsencrypt container
|
|
|
|
location ^~ /.well-known/acme-challenge/ {
|
|
|
|
auth_basic off;
|
|
|
|
auth_request off;
|
|
|
|
allow all;
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
try_files $uri =404;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
## End of configuration add by letsencrypt container
|
2024-05-02 01:46:15 -04:00
|
|
|
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;
|
|
|
|
}
|