leezhuuu commited on
Commit
9b5beb1
·
verified ·
1 Parent(s): 51ba728

Create nginx.conf

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