diff --git a/docker/nginx.conf b/docker/nginx.conf index b3fa9f1b..bae07954 100644 --- a/docker/nginx.conf +++ b/docker/nginx.conf @@ -34,20 +34,12 @@ http { add_header Access-Control-Allow-Headers "Origin, X-Requested-With, Content-Type, Accept, Authorization" always; add_header Access-Control-Allow-Credentials "true" always; - # Handle preflight requests - if ($request_method = 'OPTIONS') { - add_header Access-Control-Allow-Origin $http_origin always; - add_header Access-Control-Allow-Methods "GET, POST, PUT, DELETE, OPTIONS, PATCH" always; - add_header Access-Control-Allow-Headers "Origin, X-Requested-With, Content-Type, Accept, Authorization" always; - add_header Access-Control-Allow-Credentials "true" always; - return 204; - } - # Serve static assets directly location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ { root /usr/share/nginx/html; expires 1y; add_header Cache-Control "public, immutable"; + add_header Access-Control-Allow-Origin $http_origin always; try_files $uri =404; }