多应用插件短url配置,请教一下下这个是配置在反向代理那里吗

晚安。

问题描述

截图

我配置在反向代理那,好像还是不可以

截图

截图


#PROXY-START/

location ^~ /
{
    proxy_pass http://127.0.0.1:6321;
    proxy_set_header Host $http_host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header REMOTE-HOST $remote_addr;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection $connection_upgrade;
    proxy_http_version 1.1;
    # proxy_hide_header Upgrade;

    if (!-f $request_filename){
          rewrite ^/(.*)$ /admin/$1 break;
          proxy_pass http://webman;
       }

    add_header X-Cache $upstream_cache_status;

    #Set Nginx Cache

    set $static_fileQI0GXbbP 0;
    if ( $uri ~* "\.(gif|png|jpg|css|js|woff|woff2)$" )
    {
        set $static_fileQI0GXbbP 1;
        expires 1m;
        }
    if ( $static_fileQI0GXbbP = 0 )
    {
    add_header Cache-Control no-cache;
    }
}

#PROXY-END/

截图
可以打开了 但是资源文件都加载不到

62 0 0
0个回答

×
🔝