15 lines
310 B
Text
15 lines
310 B
Text
|
server {
|
||
|
listen 443 ssl;
|
||
|
listen [::]:443 ssl;
|
||
|
|
||
|
server_name syncthing.{{ domain }};
|
||
|
|
||
|
include /etc/nginx/snippets/authelia-location.conf;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://127.0.0.1:{{ ports['syncthing_webui'] }};
|
||
|
|
||
|
include /etc/nginx/snippets/authelia-authrequest.conf;
|
||
|
}
|
||
|
}
|