Adding nginx.conf, the forgotten

This commit is contained in:
2020-11-07 22:55:41 -03:00
parent d0999142e2
commit ee3672993a

11
nginx.conf Normal file
View File

@@ -0,0 +1,11 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
include /etc/nginx/extra-conf.d/*.conf;
}