2 配置nginx 80转发到8081端口(因为星链接口支持jd域的http请求)
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
proxy_pass http://127.0.0.1:8081;
}
}
2 配置nginx 80转发到8081端口(因为星链接口支持jd域的http请求)
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
proxy_pass http://127.0.0.1:8081;
}
}