部署到自己的服务器后,接口报401
来源:1-1 导学
慕勒0427220
2021-12-06
页面可以访问,同时login接口可以访问,但是profile接口报401
nginx配置如上。
1回答
-
Sunday
2021-12-06
你好
出现这个问题的原因应该是 服务端无法为你写入cookie。 因为 cookie 默认是不支持跨域的,所以你可能需要处理一下,以下是我这里的 nginx 配置,你可以参考以下,注释我都打上了
# 慕课网 imooc-admin
server {
#SSL 访问端口号为 443
listen 443 ssl;
#填写绑定证书的域名
server_name imooc-admin.lgdsunday.club;
#证书文件名称
ssl_certificate 1_imooc-admin.lgdsunday.club_bundle.crt;
#私钥文件名称
ssl_certificate_key 2_imooc-admin.lgdsunday.club.key;
ssl_session_timeout 5m;
#请按照以下协议配置
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
#请按照以下套件配置,配置加密套件,写法遵循 openssl 标准。
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;
ssl_prefer_server_ciphers on;
root /sunday/imooc/admin/dist/;
#charset koi8-r;
access_log logs/host.access.log main;
location / {
# index index.html index.htm;
try_files $uri $uri/ /index.html;
}
# 反向代理,解决跨域问题(单独代理请求到服务端)
location /prod-api/ {
proxy_pass http://39.105.131.75:3004/api/;
# $host 变量,Host 为变量名
proxy_set_header Host $host; #域名转发
proxy_set_header X-Real-IP $remote_addr; #IP转发
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Cookie $http_cookie; # cookie 配置
}
}
042022-12-10
相似问题