12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #user nobody;
- worker_processes 1;
- #error_log logs/error.log;
- #error_log logs/error.log notice;
- #error_log logs/error.log info;
- #pid logs/nginx.pid;
- events {
- worker_connections 1024;
- }
- http {
- include mime.types;
- default_type application/octet-stream;
- log_format main '$remote_addr - $remote_user [$time_local] "$request" '
- '$status $body_bytes_sent "$http_referer" '
- '"$http_user_agent" "$http_x_forwarded_for"';
- access_log logs/access.log main;
- sendfile on;
- #tcp_nopush on;
- keepalive_timeout 65;
- # 文件上传大小限制
- client_max_body_size 512M;
- client_body_buffer_size 256k;
-
- gzip on;
- gzip_min_length 5k;
- gzip_buffers 4 16k;
- gzip_comp_level 3;
- gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;
- gzip_vary on;
-
- add_header Access-Control-Allow-Origin *;
- add_header Access-Control-Allow-Headers X-Requested-With;
- add_header Access-Control-Allow-Methods *;
-
- # zuihou-admin-cloud 使用cloud.conf
- #include conf.d/cloud.conf;
- # zuihou-admin-boot 使用 boot.conf 2个不能同时使用
- include conf.d/boot.conf;
- }
|