Addig temper.tv conf to docker image'

This commit is contained in:
shockrah 2023-10-06 00:16:29 -07:00
parent 4a210404bb
commit 8298dbb4f7

View File

@ -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";
}
}
}