📜  nginx 代理通行证 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:18.395000             🧑  作者: Mango

代码示例2
location /some/path/ {
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_pass http://localhost:8000;
}