2024-04-01 10:27:06 +02:00
|
|
|
server {
|
|
|
|
listen 443 ssl;
|
|
|
|
listen [::]:443 ssl;
|
|
|
|
|
|
|
|
server_name hedgedoc.{{ domain }};
|
|
|
|
|
|
|
|
location / {
|
|
|
|
proxy_pass http://127.0.0.1:{{ ports['hedgedoc'] }};
|
|
|
|
}
|
|
|
|
|
|
|
|
location /socket.io/ {
|
|
|
|
proxy_pass http://127.0.0.1:{{ ports['hedgedoc'] }};
|
|
|
|
|
|
|
|
include /etc/nginx/snippets/websocket.conf;
|
2024-04-08 17:35:09 +02:00
|
|
|
include /etc/nginx/snippets/proxy.conf;
|
2024-04-01 10:27:06 +02:00
|
|
|
}
|
|
|
|
}
|