Defina os cabeçalhos CORS no nginx

4

Endereços como http://vpsxxx.ovh.net/g/search?q=ok ou http://vpsxxx.ovh.net/so/questions/34738694/how-to-move-items-on-the-screen-for-a-game-using-javascript são bem orientados por proxy, ao experimentá-los a partir da barra de URL do navegador

Mas não do JS, mesmo depois de adicionar os cabeçalhos do CORS, exemplos: link , link

até mesmo uma solicitação para a raiz / como: ajax('http://vpsxxx.ovh.net').then(function(r){ console.log(r) }); não está funcionando

Aqui está o arquivo conf:

server {
  listen 80;
  server_name vpsxxx.ovh.net;  # some ovh server

  location /g/ {
    proxy_pass http://www.google.com/;
  }

  location /so/ {

    proxy_pass http://stackoverflow.com/;
  }

  location / {  # I tried putting it before other locations too

    proxy_pass http://www.google.com/; # added here also, for tests, tried putting it just after headers too

    if ($request_method = 'OPTIONS') {
        add_header 'Access-Control-Allow-Origin' '*';
        add_header 'Access-Control-Allow-Credentials' 'true';
        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';
        add_header 'Access-Control-Max-Age' 1728000;
        add_header 'Content-Type' 'text/plain charset=UTF-8';
        add_header 'Content-Length' 0;
        return 204;
    }
    # if ($request_method = 'GET') { # let's add them for all methods
    add_header 'Access-Control-Allow-Origin' '*';
    add_header 'Access-Control-Allow-Credentials' 'true';
    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';
    # }

  }

}
    
por caub 12.01.2016 / 10:34

0 respostas