编写版本:v3.3.0
适用版本:所有版本

使用nginx反向代理转发后端请求

打开nginx配置nginx.conf文件,参考下面配置:

# 代理转发配置参考
server {
    listen        80;
    server_name    localhost;
    location / {
        root    html;
        index    index.html index.htm;
    }

    location /iform/ {
        proxy_pass    http://192.168.3.220:5100/iform;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }
}
作者:hugh  创建时间:2024-01-03 10:17
最后编辑:hugh  更新时间:2024-11-15 11:25