作者:Eddy 历史版本:1 最后编辑:Eddy 更新时间:2024-11-15 09:05
编写版本:v3.3.0
适用版本:所有版本
使用nginx反向代理转发后端请求
打开nginx配置nginx.conf
文件,参考下面配置:
# 代理转发配置参考
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
location /ibps/ {
proxy_pass http://192.168.3.220:5100/ibps;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}