要配置Nginx實(shí)現(xiàn)跨域訪問(wèn),可以在Nginx的配置文件中添加以下內(nèi)容:
編輯Nginx的配置文件,一般位于/etc/nginx/nginx.conf或/etc/nginx/conf.d/default.conf。
在http段中添加以下內(nèi)容:
http {
...
# 開啟跨域請(qǐng)求支持
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS';
add_header Access-Control-Allow-Headers 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
...
}
這樣配置后,Nginx將會(huì)添加相應(yīng)的HTTP響應(yīng)頭,允許其他域名的請(qǐng)求跨域訪問(wèn)。