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

9 lines
116 B
Go Template
Raw Permalink Normal View History

2023-06-13 09:12:30 +02:00
server {
listen 8090;
location /healthcheck {
stub_status;
access_log off;
allow 127.0.0.1;
deny all;
}
}