2 changed files with 17 additions and 3 deletions
@ -0,0 +1,12 @@ |
|||
server { |
|||
listen 80; |
|||
listen [::]:80; |
|||
server_name localhost; |
|||
|
|||
root /usr/share/nginx/html; |
|||
index index.html index.htm; |
|||
|
|||
location / { |
|||
try_files $uri /index.html; |
|||
} |
|||
} |
Loading…
Reference in new issue