nginx - Configuração de CORS que permite que os arquivos sejam servidos para localhost?

2

Aqui está o meu arquivo de configuração atual do nginx:

server {
listen 80 default_server;
listen [::]:80 default_server;

root /var/www/html;

# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;

server_name _;

location / {
    # First attempt to serve request as file, then
    # as directory, then fall back to displaying a 404.
    try_files $uri $uri/ /index.html;
}

location /home {

    if ($request_method = 'OPTIONS') {
        add_header 'Access-Control-Allow-Origin' '*';
        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 = 'POST') {
        add_header 'Access-Control-Allow-Origin' '*';
        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';
    }
    if ($request_method = 'GET') {
        add_header 'Access-Control-Allow-Origin' '*';
        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';
    }

}}

Atualmente tenho configurado para funcionar como esperado no servidor. Os arquivos são exibidos corretamente ao fazer referência a eles a partir de index.html e não há erros de CORS presentes.

O mesmo index.html é usado ao fazer o desenvolvimento em um servidor web local ( link ).

Os erros são assim:

Access to Imported resource at 'http://sub.domain.io//public/bower_components/polymer/polymer.html' from origin 'http:/sub.domain.io' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:4200' is therefore not allowed access.

Eu já tentei colocar "Access-Control-Allow-Origin *;" no servidor {} em vez de local.

Alguma ideia de como fazer isso?

    
por stamps 29.11.2016 / 18:38

1 resposta

0

talvez, a URL que você está especificando no local não é o local que você está tentando acessar. seu erro está relacionado ao caminho http://sub.domain.io//public/bower_components/polymer/polymer.html

tente adicionar uma seção para location /public com o add_header 'Access-Control-Allow-Origin' '*';

    
por 01.12.2016 / 02:39