nginx反向代理转发后页面上的js css文件无法加载原创

Posted hch的随笔 成功的秘诀在于恒心—迪斯雷利

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx反向代理转发后页面上的js css文件无法加载原创相关的知识,希望对你有一定的参考价值。

故障现象:nginx做代理转发后,发现页面上的js css文件无法加载,页面样式乱了。

 

原因:没有配置静态资源 解决js css文件无法加载无法访问的问题

 

解决办法:

修改配置文件nginx.conf,在server字段中添加黄色标注部分

        server {
        listen       80;
        server_name  test.com;

        #charset koi8-r;

        access_log  logs/opc.access.log  main;

                location / {
                        proxy_pass http://opcservice/hnairweb/;
                        proxy_redirect     off;
            proxy_set_header   Host $host;
            proxy_hide_header Server;
            proxy_set_header X-Real-IP      $remote_addr;
            proxy_set_header X-Forwarded-For $remote_addr;
            proxy_connect_timeout      10;
            proxy_send_timeout         10;
            proxy_read_timeout         10;
            proxy_intercept_errors     on;
            proxy_buffering            off;
                }

     #配置静态资源 解决js css文件无法加载无法访问的问题,注意末尾不能有 /
                 location ~ .*.(js|css|jpg|jpeg|gif|png|ico|pdf|txt)$ {
                        proxy_pass http://opcservice;
         }  
# location
~ .*.(js|css)$ { # proxy_pass http://opcservice; # } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } }

然后重新加载nginx配置即可

 

参考

nginx配置反向代理后,网页可以正常访问,但是页面上的js css文件无法加载 - Jay丶的个人空间 - 开源中国 https://my.oschina.net/u/2276456/blog/1838760

 

以上是关于nginx反向代理转发后页面上的js css文件无法加载原创的主要内容,如果未能解决你的问题,请参考以下文章

nginx设置反向代理后端jenklins,页面上的js css文件无法加载

nginx反向代理访问页面无法加载js和css

Nginx四层反向代理

nginx反向代理+tomcat域名绑定

修改nginx配置文件访问后链接网页跳转nginx404错误页面

Nginx系列之4:动静分离