diff --git a/docker/beta/nginx.conf b/docker/beta/nginx.conf index 05f4f26..087daa8 100644 --- a/docker/beta/nginx.conf +++ b/docker/beta/nginx.conf @@ -35,4 +35,18 @@ http { return 200 "healthy"; } } + + server { + listen 80; + listen [::]:80; + server_name temper.tv; + location / { + proxy_pass http://temper.tv.s3-website-us-west-1.amazonaws.com; + } + location /health { + access_log off; + add_header 'Content-Type' 'text/plain'; + return 200 "healthy"; + } + } }