123456789101112131415161718192021222324252627282930313233343536373839404142 |
- worker_processes 1;
- env SCW_IGNORE;
- env SCW_KEY;
- env SCW_COOKIE;
- env SCW_CAPTCHA_URL;
- env SCW_REDIS_HOST;
- env SCW_REDIS_PORT;
- events {
- worker_connections 1024;
- }
- http {
- include mime.types;
- default_type application/octet-stream;
-
-
-
-
- sendfile on;
-
-
- keepalive_timeout 65;
-
- include /etc/nginx/conf.d/*.conf;
- }
|