Add a default nginx config to use for our published image

This commit is contained in:
dannyrb 2019-05-20 21:27:04 -04:00
parent 851ec0be6a
commit 5e81fe8336

View File

@ -0,0 +1,12 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}