使用場景
- 項目采用前后端分離模式荐健,前端需單獨處理跨域
跨域配置
打開根目錄下的
conf/nginx.conf
文件在server配置跨域轉(zhuǎn)發(fā)處理
location / {
root html;
index index.html index.htm;
proxy_pass yuming.com; #需要訪問的接口域名
}
add_header Access-Control-Allow-Origin *; #設置跨域域名
add_header Access-Control-Allow-Credentials true; #攜帶cookie
if ( $request_method = 'OPTIONS' ) { #攔截options請求
return 200;
}
#使用`http://localhost/接口地址`訪問
nginx常用命令
nginx啟動命令 start nginx(推薦) / nginx.exe(用這個命令cmd窗口就不能結(jié)束了渣窜,只能重開)
nginx停止命令 nginx -s stop(當使用nginx.exe命令啟動時琐驴,使用這個無效)
nginx重啟命令 nginx -s reload(重載nginx命令,當你改變了nginx配置信息并需要重新載入這些配置時可以使用此命令重載nginx)