|
@@ -0,0 +1,61 @@
|
|
|
+user nginx;
|
|
|
+worker_processes auto;
|
|
|
+worker_rlimit_nofile 65535;
|
|
|
+
|
|
|
+error_log /var/log/nginx/error.log notice;
|
|
|
+pid /var/run/nginx.pid;
|
|
|
+
|
|
|
+
|
|
|
+events {
|
|
|
+ worker_connections 65535;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+http {
|
|
|
+ include /etc/nginx/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 /var/log/nginx/access.log main;
|
|
|
+
|
|
|
+ sendfile on;
|
|
|
+ #tcp_nopush on;
|
|
|
+
|
|
|
+ keepalive_timeout 65;
|
|
|
+ client_max_body_size 15m;
|
|
|
+
|
|
|
+
|
|
|
+ server{
|
|
|
+ listen 80;
|
|
|
+ listen [::]:80;
|
|
|
+ server_name localhost;
|
|
|
+
|
|
|
+ location /prod-api/ {
|
|
|
+ proxy_pass http://19.135.92.130:9090/;
|
|
|
+ }
|
|
|
+ location /uploadPath/ {
|
|
|
+ proxy_pass http://19.135.92.130:9090/file/uploadPath/;
|
|
|
+ }
|
|
|
+ location / {
|
|
|
+ root /usr/share/nginx/html;
|
|
|
+ index index.html index.html;
|
|
|
+ try_files $uri $uri /index.html;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ gzip on;
|
|
|
+ gzip_http_version 1.0;
|
|
|
+ gzip_static on;
|
|
|
+ gzip_min_length 1k;
|
|
|
+ gzip_buffers 4 16k;
|
|
|
+ #gzip_http_version 1.1;
|
|
|
+ gzip_comp_level 5; # 压缩级别
|
|
|
+ # 要压缩的mine类型
|
|
|
+ gzip_types text/plain application/javascript application/x-javascript text/javascript text/css application/xml application/xml+rss image/jpeg image/gif image/png image/svg+xml;
|
|
|
+ gzip_vary off;
|
|
|
+ gzip_proxied expired no-cache no-store private auth;
|
|
|
+ gzip_disable "MSIE [1-6]\."; # IE6不支持gzip
|
|
|
+}
|