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

fix nginx

This commit is contained in:
Thomas 2023-06-04 09:24:50 +02:00 committed by GitHub
parent ab3c727456
commit d10a8ae3f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,7 @@ location / {
location /embed.html {
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";
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__/;
more_set_headers 'Access-Control-Allow-Origin: *';
more_set_headers "Access-Control-Allow-Origin: *";
}
location /media/attachments/ {
alias __DATA_DIR__/data/media/attachments/;
more_set_headers 'Access-Control-Allow-Origin: *';
more_set_headers "Access-Control-Allow-Origin: *";
}
# This is an internal location that is used to serve
@ -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/;
more_set_headers 'Access-Control-Allow-Origin: *';
more_set_headers "Access-Control-Allow-Origin: *";
}
location /manifest.json {