deployment: merge into root dockerfile

This commit is contained in:
Patrik Oldsberg
2020-03-31 00:17:15 +02:00
parent cc3120c35f
commit 9a5ed723c4
4 changed files with 9 additions and 35 deletions
+22
View File
@@ -0,0 +1,22 @@
server {
listen $PORT;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri /index.html;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}