wellknow 发表于 2026-7-21 09:46:25

nocobase反向代理配置文件

location ^~ /
{
        proxy_pass http://localhost:13000;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header X-Forwarded-Host $http_host;
        proxy_set_header X-Forwarded-Port $server_port;
        proxy_set_header REMOTE-HOST $remote_addr;
        proxy_set_header REMOTE-PORT $remote_port;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection $connection_upgrade;
        proxy_http_version 1.1;
        add_header X-Cache $upstream_cache_status;
       
        set $static_fileL7Oj3VcR 0;
        if ($uri ~* "\.(gif|png|jpg|css|js|woff|woff2)$") {
                set $static_fileL7Oj3VcR 1;
                expires 1m;
        }
        if ($static_fileL7Oj3VcR = 0) {
                add_header Cache-Control no-cache;
        }
}
页: [1]
查看完整版本: nocobase反向代理配置文件