vue
行走的码农霖悦
奔走在自己的热爱中,一路向前,充满阳光️
展开
-
nginx解决跨域问题,配置
在被请求项目的nginx配置文件中添加如下配置: add_header Access-Control-Allow-Credentials true; add_header Access-Control-Allow-Origin $http_origin;原创 2021-01-11 21:36:44 · 573 阅读 · 0 评论 -
VUE项目nginx配置
server { listen 80; server_name cwx.jiujiujuhe.com; index index.php index.html index.htm default.php default.htm default.html; root /www/wwwroot/jiujiujuhe-c/dist; # #防止跨域 # add_header 'Access-Control-Allow-Origin' '*'; # add_h...原创 2021-01-26 12:33:07 · 506 阅读 · 0 评论