node.js - 同一域名下不同端口cookie共享问题
巴扎黑
巴扎黑 2017-04-17 15:05:54
0
2
779
巴扎黑
巴扎黑

모든 응답(2)
Ty80

既然前后端分离了,就应该接受无状态这种模式。尝试从其他途径解决状态保存问题。

例如:可以在登录接口中返回用户信息,由前端进行处理。

Peter_Zhu

使用nginx做反向代理,将不同端口的服务映射到统一端口,就可以实现cookie共享了

nginx配置文件范例:

server {
    listen       8080;
    server_name  example.com;

    # 将/api路径映射到3000端口
    location ~ ^/(api)/ {
        proxy_pass http://127.0.0.1:3000;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_set_header Host $host;
    }
    
    # 静态资源直接由nginx负责
    location / {
        root       /some/path;
        index      index.html index.htm;
    }
}

之后访问 http://example.com:8080/ 为静态资源,http://example.com:8080/api/* 为接口

최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿