NGINX - CORS error affecting only Firefox
- by wiherek
this is an issue with Nginx that affects only firefox. I have this config:
http://pastebin.com/q6Yeqxv9
upstream connect {
server 127.0.0.1:8080;
}
server {
server_name admin.example.com www.admin.example.com;
listen 80;
return 301 https://admin.example.com$request_uri;
}
server {
listen 80;
…