sp-containers/files/common/nginx/conf.d/healthcheck.conf.gotmpl

9 lines
116 B
Go Template
Raw Permalink Normal View History

2023-06-05 15:24:42 +02:00
server {
listen 8090;
location /healthcheck {
stub_status;
access_log off;
allow 127.0.0.1;
deny all;
}
}