autowp/autowp-frontend

View on GitHub
etc/nginx/conf.d/health.conf

Summary

Maintainability
Test Coverage
server {
listen 8081;
 
location / {
access_log off;
add_header Content-Type text/plain;
return 200 "healthy\n";
}
}