1.安装好nginx
2.打开配置文件,做如下修改
listen 8080 修改为你当前服务器的访问端口
proxy_pass http://1.1xx.15x.9x:8088/; 修改为你需要代理的网址或域名
搞定,very 奈斯。
server {
listen 8080
server_name localhost;
# root /www/wwwroot/chatgpt-web/dist;
# index index.html;
location / {
proxy_pass http://1.1xx.15x.9x:8088/;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}