在nginx中配置跨域訪問需要以下步驟:
打開nginx的配置文件,一般為nginx.conf
或者conf.d
目錄下的配置文件。
在需要配置跨域的server塊中添加以下配置:
location / {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'Content-Type';
}
以上是最簡單的跨域配置,可以根據需求進行調整。