fix: docker nginx config

This commit is contained in:
2023-02-12 19:10:10 +00:00
parent b0d5612b90
commit 39292802f8
2 changed files with 12 additions and 1 deletions

10
docker/nginx.conf Normal file
View File

@ -0,0 +1,10 @@
server {
listen 80 default_server;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html =404;
}
}