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