Mediocreatmybest commited on
Commit
c590d22
1 Parent(s): 83927d6

Create nginx.conf

Browse files
Files changed (1) hide show
  1. nginx.conf +10 -0
nginx.conf ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ http {
2
+ server {
3
+ listen 3000;
4
+
5
+ location / {
6
+ alias /var/www/html/;
7
+ index index.html;
8
+ }
9
+ }
10
+ }