Spaces:
Build error
Build error
Commit
·
c590d22
1
Parent(s):
83927d6
Create nginx.conf
Browse files- 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 |
+
}
|