Spaces:
Sleeping
Sleeping
Added nginx conf
Browse files- nginx.conf +17 -0
nginx.conf
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
pid /tmp/nginx.pid;
|
2 |
+
|
3 |
+
events {
|
4 |
+
worker_connections 1024;
|
5 |
+
}
|
6 |
+
|
7 |
+
http {
|
8 |
+
server {
|
9 |
+
listen 7860;
|
10 |
+
server_name localhost;
|
11 |
+
|
12 |
+
location / {
|
13 |
+
root /usr/share/nginx/html;
|
14 |
+
index index.html;
|
15 |
+
}
|
16 |
+
}
|
17 |
+
}
|