mirror of
https://github.com/Redocly/redoc.git
synced 2025-08-07 21:54:53 +03:00
refactor: update security header as nginx does not inherit correctly
This commit is contained in:
parent
e3117c087f
commit
6d3474809b
|
@ -17,17 +17,18 @@ http {
|
||||||
server_name localhost;
|
server_name localhost;
|
||||||
index index.html index.htm;
|
index index.html index.htm;
|
||||||
|
|
||||||
# Add security headers
|
|
||||||
add_header X-Frame-Options deny always;
|
|
||||||
add_header X-XSS-Protection "1; mode=block" always;
|
|
||||||
add_header X-Content-Type-Options nosniff always;
|
|
||||||
add_header Content-Security-Policy "default-src 'none'" always;
|
|
||||||
add_header Referrer-Policy strict-origin-when-cross-origin always;
|
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
alias /usr/share/nginx/html/;
|
alias /usr/share/nginx/html/;
|
||||||
|
|
||||||
if ($request_method = 'OPTIONS') {
|
if ($request_method = 'OPTIONS') {
|
||||||
|
# Add security headers
|
||||||
|
add_header 'X-Frame-Options' 'deny always';
|
||||||
|
add_header 'X-XSS-Protection' '"1; mode=block" always';
|
||||||
|
add_header 'X-Content-Type-Options' 'nosniff always';
|
||||||
|
add_header 'Content-Security-Policy' '"default-src \'none\'" always';
|
||||||
|
add_header 'Referrer-Policy' 'strict-origin-when-cross-origin always';
|
||||||
|
|
||||||
|
# Set access control header
|
||||||
add_header 'Access-Control-Allow-Origin' '*';
|
add_header 'Access-Control-Allow-Origin' '*';
|
||||||
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
|
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
|
||||||
#
|
#
|
||||||
|
@ -43,11 +44,27 @@ http {
|
||||||
return 204;
|
return 204;
|
||||||
}
|
}
|
||||||
if ($request_method = 'POST') {
|
if ($request_method = 'POST') {
|
||||||
|
# Add security headers
|
||||||
|
add_header 'X-Frame-Options' 'deny always';
|
||||||
|
add_header 'X-XSS-Protection' '"1; mode=block" always';
|
||||||
|
add_header 'X-Content-Type-Options' 'nosniff always';
|
||||||
|
add_header 'Content-Security-Policy' '"default-src \'none\'" always';
|
||||||
|
add_header 'Referrer-Policy' 'strict-origin-when-cross-origin always';
|
||||||
|
|
||||||
|
# Set access control header
|
||||||
add_header 'Access-Control-Allow-Origin' '*';
|
add_header 'Access-Control-Allow-Origin' '*';
|
||||||
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
|
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-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
|
||||||
}
|
}
|
||||||
if ($request_method = 'GET') {
|
if ($request_method = 'GET') {
|
||||||
|
# Add security headers
|
||||||
|
add_header 'X-Frame-Options' 'deny always';
|
||||||
|
add_header 'X-XSS-Protection' '"1; mode=block" always';
|
||||||
|
add_header 'X-Content-Type-Options' 'nosniff always';
|
||||||
|
add_header 'Content-Security-Policy' '"default-src \'none\'" always';
|
||||||
|
add_header 'Referrer-Policy' 'strict-origin-when-cross-origin always';
|
||||||
|
|
||||||
|
# Set access control header
|
||||||
add_header 'Access-Control-Allow-Origin' '*';
|
add_header 'Access-Control-Allow-Origin' '*';
|
||||||
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
|
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-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
|
||||||
|
|
Loading…
Reference in New Issue
Block a user