nginx - конфигурация CORS, позволяющая передавать файлы на локальный хост?

Вот мой текущий файл конфигурации 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';
    }

}}

В настоящее время я настроил его так, чтобы он работал как положено на сервере. Файлы правильно обрабатываются при обращении к ним из index.html, и ошибок CORS нет.

Тот же index.html используется при разработке на локальном веб-сервере ( http://localhost:4200/).

Ошибки выглядят так:

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.

Я уже пытался поставить "Access-Control-Allow-Origin *;" на сервере {} вместо местоположения.

Есть идеи, как это сделать?

1 ответ

Возможно , URL-адрес, который вы указываете для местоположения, не является местоположением, к которому вы пытаетесь обратиться. ваша ошибка связана с путем http://sub.domain.io//public/bower_components/polymer/polymer.html

попробуйте добавить раздел для location /public с add_header 'Access-Control-Allow-Origin' '*';

Другие вопросы по тегам