nginx跨域配置的步骤是什么
在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';}
- 重启nginx服务使配置生效。
以上是最简单的跨域配置,可以根据需求进行调整。