Browse Source

Added nginx config file

pull/110/head
Safet Purkovic 3 years ago
parent
commit
107ea63bd4
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      nginx.conf

+ 8
- 0
nginx.conf View File

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

Loading…
Cancel
Save