File size: 137 Bytes
c590d22
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
http {
   server {
       listen 3000;

       location / {
           alias /var/www/html/;
           index index.html;
       }
   }
}