wixcs commited on
Commit
b4a05c1
·
verified ·
1 Parent(s): e560088

Create nginx.conf

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