开发者社区> 问答> 正文

Nginx Tomcat访问速度不稳定,有什么好的方法?

1.将CSS + JS等资源文件通过Nginx访问,加载速度挺快
2.但是一些通过Tomcat访问后端的的速度很不稳定,差别很大,长时1min,短则200ms等时间。不知道为啥会出现这种情况,可以通过。
如图:
1
Nginx配置文件内容:

server {
        listen       80;
        server_name  m.xxx.com m.xxx.cn;

        location / {
            proxy_pass http://localhost:8080;
        }
        
        location ~ .*\.(htm|html|gif|jpeg|png|bmp|swf|ioc|rar|zip|txt|flv|mid|doc|ppt|pdf|xls|mp3|wma|woff|jpg)$ {   #设置静态网页直接由nginx进行处理
            expires 30d;
            #proxy_pass http://cms.xxx.com:8081;
        }
        location ~ .*\.(js|css)?$ {
                expires 1h;
                #proxy_pass http://cms.xxx.com:8081;
        }
    }
    
    server {
        listen       80;
        server_name  cms.xxx.com cms.xxx.cn;

        location / {
            proxy_pass http://localhost:8081;
        }
        
        location ~ .*\.(htm|html|gif|jpeg|png|bmp|swf|ioc|rar|zip|txt|flv|mid|doc|ppt|pdf|xls|mp3|wma|woff|jpg)$ {   #设置静态网页直接由nginx进行处理
            expires 30d;
            #proxy_pass http://cms.xxx.com:8081;
        }
        
        location ~ .*\.(js|css)?$ {
            expires 1h;
            #proxy_pass http://cms.xxxx.com:8081;
        }
    }

展开
收起
落地花开啦 2016-06-02 15:19:08 2663 0
1 条回答
写回答
取消 提交回答
  • 喜欢技术,喜欢努力的人
    location / {
        proxy_pass http://localhost:8081;
         
        proxy_redirect          off;
        proxy_set_header        Host $host;
        client_max_body_size    10m;
        client_body_buffer_size 128k;
        proxy_connect_timeout   90;
        proxy_send_timeout      150;
        proxy_read_timeout      150;
        proxy_buffer_size       16k;
        proxy_buffers           4 64k;
        proxy_busy_buffers_size 128k;
        proxy_temp_file_write_size 128k;
      
    }

    调整一下这些参数值试试

    2019-07-17 19:24:59
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
《Nginx 代理系统常用手册》 立即下载
CentOS Nginx PHP JAVA 多语言镜像使用手 立即下载
CentOS Nginx PHP JAVA多语言镜像使用手册 立即下载