add nginx
This commit is contained in:
parent
f3ff12f5ae
commit
e993f5293c
8
nginx/nginx.config
Normal file
8
nginx/nginx.config
Normal 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…
Reference in a new issue