ฉันจะเพิ่ม Access-Control-Allow-Origin ใน NGINX ได้อย่างไร


158

ฉันจะตั้งค่าส่วนหัว Access-Control-Allow-Origin เพื่อที่ฉันจะสามารถใช้เว็บแบบอักษรจากโดเมนย่อยของฉันบนโดเมนหลักของฉันได้อย่างไร


หมายเหตุ:

คุณจะพบตัวอย่างของส่วนนี้และส่วนหัวอื่น ๆ สำหรับเซิร์ฟเวอร์ HTTP ส่วนใหญ่ในโครงการ HTML5BP Server Configs https://github.com/h5bp/server-configs


4
ในที่สุดอาก็พบตำแหน่งคำตอบ / {add_header Access-Control-Allow-Origin "*"; }
Chris McKee

คำตอบ:


182

Nginx จะต้องรวบรวมด้วยhttp://wiki.nginx.org/NginxHttpHeadersModule (ค่าเริ่มต้นใน Ubuntu และ Linux distros อื่น ๆ ) จากนั้นคุณสามารถทำได้

location ~* \.(eot|ttf|woff|woff2)$ {
    add_header Access-Control-Allow-Origin *;
}

ทำตามคำแนะนำนี้ในกรณีที่คุณต้องการใช้โซลูชันเดียวกันใน apache: stackoverflow.com/questions/11616306/ …
camilo_u

6
ดูเหมือนว่าโมดูลดังกล่าวจะถูกรวบรวมโดยค่าเริ่มต้น (อย่างน้อยใน Ubuntu)
Steve Bennett

1
รวบรวมโดยค่าเริ่มต้นใน amazon linux repo
Ross

1
ไฟล์และตำแหน่งใดที่เราควรวางคำสั่งตำแหน่งนี้
สุมิตร Arora

1
มันไม่ทำงานสำหรับฉัน Nginx 1.10.0, Ubuntu 16.04
Omid Amraei

36

คำตอบที่เป็นปัจจุบันมากขึ้น:

#
# Wide-open CORS config for nginx
#
location / {
     if ($request_method = 'OPTIONS') {
        add_header 'Access-Control-Allow-Origin' '*';
        #
        # Om nom nom cookies
        #
        add_header 'Access-Control-Allow-Credentials' 'true';
        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
        #
        # Custom headers and headers various browsers *should* be OK with but aren't
        #
        add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
        #
        # Tell client that this pre-flight info is valid for 20 days
        #
        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-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';
     }
     if ($request_method = 'GET') {
        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';
     }
}

แหล่งที่มา: https://michielkalkman.com/snippets/nginx-cors-open-configuration.html

คุณอาจต้องการเพิ่มAccess-Control-Expose-Headers(ในรูปแบบเดียวกับ Access-Control-Allow-Headers) เพื่อแสดงส่วนหัวที่กำหนดเองและ / หรือ 'ไม่ง่าย' ในคำขอ ajax

Access-Control-Expose-Headers (optional) - The XMLHttpRequest 2 object has a 
getResponseHeader() method that returns the value of a particular response 
header. During a CORS request, the getResponseHeader() method can only access 
simple response headers. Simple response headers are defined as follows:

    Cache-Control
    Content-Language
    Content-Type
    Expires
    Last-Modified
    Pragma
 If you want clients to be able to access other headers, you have to use the
 Access-Control-Expose-Headers header. The value of this header is a comma-
 delimited list of response headers you want to expose to the client.

- http://www.html5rocks.com/th/tutorials/cors/

Configs สำหรับเว็บเซิร์ฟเวอร์อื่น ๆhttp://enable-cors.org/server.html


1
มีวิธีใดที่จะไม่ต้องทำซ้ำบรรทัดเหล่านี้ในทุกที่หรือไม่ เราสามารถวางไว้ใต้เซิร์ฟเวอร์ {} block ได้ไหม?
geoyws

@geoyws (ไม่มี @ ฉันไม่ได้รับการแจ้งเตือน); คุณสามารถวางไว้เหนือสถานที่ก็ดี :)
344 Chris

access-control-expose-headers หายไปที่นี่
chovy

3
โปรดหลีกเลี่ยงการใช้งานifใน nginx - แม้กระทั่งคู่มืออย่างเป็นทางการก็ไม่สามารถทำได้
รวม

1
ฉันต้องการเพิ่มว่ามีประโยชน์ในการเพิ่มalwaysตัวเลือกทั้งหมดadd_headerเพื่อให้มีการเพิ่มส่วนหัวสำหรับการตอบสนองที่ไม่ใช่ 200 ตั้งแต่ nginx 1.7.5: nginx.org/en/docs/http/ngx_http_headers_module.html
Mitar

11

นี่คือบทความที่ฉันเขียนซึ่งหลีกเลี่ยงความซ้ำซ้อนของ GET | POST มันควรให้คุณไปกับ CORS ใน Nginx

การควบคุมการเข้าถึง nginx อนุญาตให้กำเนิด

นี่คือตัวอย่างข้อมูลจากโพสต์:

server {
  listen        80;
  server_name   api.test.com;


  location / {

    # Simple requests
    if ($request_method ~* "(GET|POST)") {
      add_header "Access-Control-Allow-Origin"  *;
    }

    # Preflighted requests
    if ($request_method = OPTIONS ) {
      add_header "Access-Control-Allow-Origin"  *;
      add_header "Access-Control-Allow-Methods" "GET, POST, OPTIONS, HEAD";
      add_header "Access-Control-Allow-Headers" "Authorization, Origin, X-Requested-With, Content-Type, Accept";
      return 200;
    }

    ....
    # Handle request
    ....
  }
}

2
ตามนโยบาย SF คุณจำเป็นต้องคัดลอกข้อมูลลงในโพสต์ไม่ใช่แค่ลิงค์ไปยังมัน เว็บไซต์สามารถหายไปได้ตลอดเวลาซึ่งจะเป็นการสูญเสียข้อมูล
ทิม

1
จุดที่ถูกต้อง @tim อัปเดตเพื่อใส่รหัส
gansbrest

ลองใช้รหัสสถานะ204 No contentตามที่เหมาะสมกว่า
Slava Fomin II

7

ก่อนอื่นให้ฉันบอกว่า @hellvinz คำตอบนั้นใช้ได้สำหรับฉัน:

location ~* \.(eot|ttf|woff|woff2)$ {
    add_header Access-Control-Allow-Origin *;
}

อย่างไรก็ตามฉันตัดสินใจที่จะตอบคำถามนี้ด้วยคำตอบแยกต่างหากเนื่องจากฉันจัดการเพื่อให้โซลูชันนี้ใช้งานได้หลังจากใช้เวลาอีกประมาณสิบชั่วโมงเพื่อหาวิธีแก้ไข

ดูเหมือนว่า Nginx จะไม่กำหนดประเภท MIME แบบอักษร (ถูกต้อง) ตามค่าเริ่มต้น โดยทำตามtuorial นี้ฉันพบว่าฉันสามารถเพิ่มต่อไปนี้:

application/x-font-ttf           ttc ttf;
application/x-font-otf           otf;
application/font-woff            woff;
application/font-woff2           woff2;
application/vnd.ms-fontobject    eot;

ถึงetc/nginx/mime.typesไฟล์ของฉัน ตามที่ระบุไว้วิธีการแก้ปัญหาข้างต้นก็ทำงานได้


2
ฉันมักจะต้องการชี้ให้คนที่จะตรวจสอบไฟล์ชนิดไมม์บน H5BP github.com/h5bp/server-configs-nginx/blob/master/mime.types :)
คริสแมค

4

คำสั่ง add_header ดั้งเดิมของ Nginx ไม่ทำงานกับการตอบสนองแบบ 4xx ในขณะที่เรายังต้องการเพิ่มส่วนหัวที่กำหนดเองเราจำเป็นต้องติดตั้งโมดูล ngx_headers_more เพื่อให้สามารถใช้คำสั่ง more_set_headers ซึ่งทำงานได้กับการตอบกลับ 4xx

sudo apt-get install nginx-extras

จากนั้นใช้more_set_headersในไฟล์ nginx.conf ฉันวางตัวอย่างด้านล่างแล้ว

server {
    listen 80;
    server_name example-site.com;
    root "/home/vagrant/projects/example-site/public";

    index index.html index.htm index.php;

    charset utf-8;

    more_set_headers 'Access-Control-Allow-Origin: $http_origin';
    more_set_headers 'Access-Control-Allow-Methods: GET, POST, OPTIONS, PUT, DELETE, HEAD';
    more_set_headers 'Access-Control-Allow-Credentials: true';
    more_set_headers 'Access-Control-Allow-Headers: Origin,Content-Type,Accept,Authorization';

    location / {
        if ($request_method = 'OPTIONS') {
            more_set_headers 'Access-Control-Allow-Origin: $http_origin';
            more_set_headers 'Access-Control-Allow-Methods: GET, POST, OPTIONS, PUT, DELETE, HEAD';
            more_set_headers 'Access-Control-Max-Age: 1728000';
            more_set_headers 'Access-Control-Allow-Credentials: true';
            more_set_headers 'Access-Control-Allow-Headers: Origin,Content-Type,Accept,Authorization';
            more_set_headers 'Content-Type: text/plain; charset=UTF-8';
            more_set_headers 'Content-Length: 0';
            return 204;
        }
        try_files $uri $uri/ /index.php?$query_string;
    }

    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }

    access_log off;
    error_log  /var/log/nginx/example-site.com-error.log error;

    sendfile off;

    client_max_body_size 100m;

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_intercept_errors off;
        fastcgi_buffer_size 16k;
        fastcgi_buffers 4 16k;
    }

    location ~ /\.ht {
        deny all;
    }
}

1

ในบางกรณีคุณจำเป็นต้องใช้add_headerคำสั่งalwaysเพื่อครอบคลุมรหัสตอบกลับ HTTP ทั้งหมด

location / {
    add_header 'Access-Control-Allow-Origin' '*' always;
}

จากเอกสาร :

หากระบุพารามิเตอร์ always (1.7.5) ฟิลด์ส่วนหัวจะถูกเพิ่มโดยไม่คำนึงถึงรหัสการตอบกลับ

เพิ่มเขตข้อมูลที่ระบุในส่วนหัวการตอบสนองโดยมีเงื่อนไขว่ารหัสการตอบสนองเท่ากับ 200, 201 (1.3.10), 204, 206, 301, 302, 303, 304, 307 (1.1.16, 1.0.13) หรือ 308 (1.13 0.0) ค่าพารามิเตอร์สามารถมีตัวแปรได้


0

ในกรณีของฉันใช้ Rails 5 ทางออกเดียวที่ทำงานได้เพิ่มrack-corsอัญมณี ชอบมาก

ใน / Gemfile

# Gemfile
gem 'rack-cors'

ใน config / initializers / cors.rb

# config/initializers/cors.rb
Rails.application.config.middleware.insert_before 0, Rack::Cors do
  allow do
    origins 'localhost:4200'
    resource '*',
      headers: :any,
      methods: %i(get post put patch delete options head)
  end
end

แหล่งที่มา: https://til.hashrocket.com/posts/4d7f12b213-rails-5-api-and-cors


นั่นช่วย nginx ให้บริการไฟล์คงที่ได้อย่างไร?
วอลล์

ฉันใช้ nginx เป็น reverse proxy เพื่อรองรับแอพพลิเคชั่น Rails 5 นี่เป็นกรณีพิเศษที่ข้อ จำกัด CORS ไม่ได้มาจาก nginx แต่มาจาก Rails App ต้นกำเนิดอยู่ด้านหลัง
user9869932
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.