Archived
1
0
This repository has been archived on 2025-05-13. You can view files and clone it, but cannot push or open issues or pull requests.
Files
inception/srcs/docker/nginx/health.conf
2025-01-17 16:49:53 +01:00

10 lines
164 B
Plaintext

server {
listen 127.0.0.1:80;
location /health {
access_log off;
return 200 'healthy';
add_header Content-Type text/plain;
}
}