nginx Access-Control-Allow-Origin配置指定ip
时间: 2024-01-11 20:22:39 浏览: 287
Access-Control-Allow-Origin
5星 · 资源好评率100%
以下是在nginx中配置Access-Control-Allow-Origin指定IP的方法:
1. 在nginx的配置文件中找到你想要配置的location块,例如:
```shell
location /api {
# 这里是你的其他配置
}
```
2. 在该location块中添加以下配置:
```shell
location /api {
# 这里是你的其他配置
add_header 'Access-Control-Allow-Origin' 'http://指定的IP地址';
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET,POST';
}
```
其中,将`http://指定的IP地址`替换为你想要指定的IP地址。
3. 保存并退出配置文件。
4. 重新加载nginx配置文件,使配置生效:
```shell
sudo service nginx reload
```
这样,nginx就会在响应中添加Access-Control-Allow-Origin头,并指定了你配置的IP地址。
阅读全文