遇到的問題:服務器可以訪問到的地址,我本地代碼無法訪問到
在服務器上裝好nginx,在nginx配置文件nginx.conf中配置本地想要鏈接對應的服務器端口信息
server {listen 8101;location / {proxy_http_version 1.1;proxy_set_header Upgrade $http_upgrade;proxy_set_header Connection "upgrade";proxy_pass http://121.37.69.240:31013;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;}}
加好這個代理后本地代碼就可以訪問了