feat: add nginx default config.

This commit is contained in:
a.bouhuolia
2021-09-21 15:30:12 +02:00
parent f1df8c33ff
commit 2633a03295
3 changed files with 1 additions and 20 deletions

View File

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