update production docker stuff

This commit is contained in:
_Bastler
2021-08-20 12:30:33 +02:00
parent e82de52a35
commit 94328771bf
4 changed files with 73 additions and 23 deletions
+16
View File
@@ -0,0 +1,16 @@
server {
listen 80;
listen [::]:80;
server_name localhost;
access_log off;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location ~ ^/[@_]/ {
try_files $uri $uri/ /index.html;
}
}