iaiuse commited on
Commit
fc585ec
1 Parent(s): 547e3a8

Create nginx.conf

Browse files
Files changed (1) hide show
  1. nginx.conf +10 -0
nginx.conf ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ server {
2
+ listen 80;
3
+ server_name localhost;
4
+ root /usr/share/nginx/html;
5
+ index index.html;
6
+
7
+ location / {
8
+ try_files $uri $uri/ /index.html;
9
+ }
10
+ }