1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/funkwhale_ynh.git synced 2024-09-03 18:36:24 +02:00

replace add_header by more_set_headers

This commit is contained in:
Thomas 2023-06-04 09:03:47 +02:00 committed by GitHub
parent e2e9e52511
commit ef9e182d5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,8 +28,8 @@ location / {
}
location /embed.html {
add_header Content-Security-Policy "connect-src https: http: 'self'; default-src 'self'; script-src 'self' unpkg.com 'unsafe-inline' 'unsafe-eval'; style-src https: http: 'self' 'unsafe-inline'; img-src https: http: 'self' data:; font-src https: http: 'self' data:; object-src 'none'; media-src https: http: 'self' data:";
add_header Referrer-Policy "strict-origin-when-cross-origin";
more_set_headers "Content-Security-Policy: connect-src https: http: 'self'; default-src 'self'; script-src 'self' unpkg.com 'unsafe-inline' 'unsafe-eval'; style-src https: http: 'self' 'unsafe-inline'; img-src https: http: 'self' data:; font-src https: http: 'self' data:; object-src 'none'; media-src https: http: 'self' data:";
more_set_headers "Referrer-Policy: "strict-origin-when-cross-origin";
alias __INSTALL_DIR__/front/dist/embed.html;
expires 1d;
@ -95,12 +95,12 @@ location /.well-known/ {
location /media/__sized__/ {
alias __DATA_DIR__/data/media/__sized__/;
add_header Acces-Control-Allow-Origin '*';
more_set_headers "Acces-Control-Allow-Origin '*'";
}
location /media/attachments/ {
alias __DATA_DIR__/data/media/attachments/;
add_header Access-Control-Allow-Origin '*';
more_set_headers "Access-Control-Allow-Origin '*'";
}
# This is an internal location that is used to serve
@ -114,7 +114,7 @@ location /media/attachments/ {
# # Needed to ensure DSub auth isn't forwarded to S3/Minio, see #932.
# proxy_set_header Authorization ""; # S3
# proxy_pass $1; # S3
# add_header Access-Control-Allow-Origin '*';
# more_set_headers "Access-Control-Allow-Origin '*'";
#}
location /_protected/music/ {
@ -124,7 +124,7 @@ location /_protected/music/ {
# Set this to the same value as your MUSIC_DIRECTORY_PATH setting
internal;
alias __DATA_DIR__/data/music/;
add_header Access-Control-Allow-Origin '*';
more_set_headers "Access-Control-Allow-Origin '*'";
}
location /manifest.json {