13 lines
285 B
Text
13 lines
285 B
Text
server {
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
|
|
server_name status.{{ domain }};
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:{{ ports['uptime_kuma'] }};
|
|
|
|
include /etc/nginx/snippets/websocket.conf;
|
|
include /etc/nginx/snippets/proxy.conf;
|
|
}
|
|
}
|