diff --git a/docker/beta/nginx.conf b/docker/beta/nginx.conf index bbbc2af..05f4f26 100644 --- a/docker/beta/nginx.conf +++ b/docker/beta/nginx.conf @@ -15,6 +15,11 @@ http { location / { proxy_pass http://shockrah.xyz.s3-website-us-west-1.amazonaws.com; } + location /health { + access_log off; + add_header 'Content-Type' 'text/plain'; + return 200 "healthy"; + } } server { @@ -24,5 +29,10 @@ http { location / { proxy_pass http://resume.shockrah.xyz.s3-website-us-west-1.amazonaws.com; } + location /health { + access_log off; + add_header 'Content-Type' 'text/plain'; + return 200 "healthy"; + } } }