dever 4 years ago
parent
commit
0d983d244e
1 changed files with 8 additions and 0 deletions
  1. 8 0
      container/conf/web/nginx/conf.d/site.conf

+ 8 - 0
container/conf/web/nginx/conf.d/site.conf

@@ -14,6 +14,14 @@ server {
     gzip_vary on;
     gzip_disable "MSIE [1-6]\.";
 
+    add_header Access-Control-Allow-Origin *;
+    add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS';
+    add_header Access-Control-Allow-Headers 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization';
+
+    if ($request_method = 'OPTIONS') {
+        return 204;
+    }
+
     location ~* ^.+\.(ico|gif|jpg|jpeg|png)$ {
             add_header Access-Control-Allow-Origin *;
             add_header Access-Control-Allow-Headers X-Requested-With;