Spaces:
Paused
Paused
Commit ·
0565a9d
1
Parent(s): 5e5e84d
Create nginx.conf
Browse files- nginx.conf +15 -0
nginx.conf
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
user nginx;
|
| 2 |
+
worker_processes 1;
|
| 3 |
+
|
| 4 |
+
events {
|
| 5 |
+
worker_connections 1024;
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
http {
|
| 9 |
+
include mime.types;
|
| 10 |
+
default_type application/octet-stream;
|
| 11 |
+
sendfile on;
|
| 12 |
+
keepalive_timeout 65;
|
| 13 |
+
|
| 14 |
+
include /etc/nginx/conf.d/*.conf;
|
| 15 |
+
}
|