mirror of
https://github.com/YunoHost-Apps/funkwhale_ynh.git
synced 2024-09-03 18:36:24 +02:00
Cleaned up file to fix linting issue
This commit is contained in:
parent
c666372f94
commit
8b489ed40c
1 changed files with 22 additions and 22 deletions
|
@ -7,61 +7,61 @@ location / {
|
||||||
|
|
||||||
location /front/ {
|
location /front/ {
|
||||||
alias __FINALPATH__/code/front/dist/;
|
alias __FINALPATH__/code/front/dist/;
|
||||||
expires 30d;
|
expires 30d;
|
||||||
more_set_headers "Pragma: public";
|
more_set_headers "Pragma: public";
|
||||||
more_set_headers "Cache-Control: public, must-revalidate, proxy-revalidate";
|
more_set_headers "Cache-Control: public, must-revalidate, proxy-revalidate";
|
||||||
more_set_headers "Content-Security-Policy: default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; font-src 'self' data:; object-src 'none'; media-src 'self' data:";
|
more_set_headers "Content-Security-Policy: default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; font-src 'self' data:; object-src 'none'; media-src 'self' data:";
|
||||||
more_set_headers "Referrer-Policy: strict-origin-when-cross-origin";
|
more_set_headers "Referrer-Policy: strict-origin-when-cross-origin";
|
||||||
more_set_headers "X-Frame-Options: SAMEORIGIN";
|
more_set_headers "X-Frame-Options: SAMEORIGIN";
|
||||||
more_set_headers "Service-Worker-Allowed: /;
|
more_set_headers "Service-Worker-Allowed: /;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
location /front/embed.html {
|
location /front/embed.html {
|
||||||
more_set_headers "Content-Security-Policy: default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; font-src 'self' data:; object-src 'none'; media-src 'self' data:";
|
more_set_headers "Content-Security-Policy: default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; font-src 'self' data:; object-src 'none'; media-src 'self' data:";
|
||||||
more_set_headers "Referrer-Policy: strict-origin-when-cross-origin";
|
more_set_headers "Referrer-Policy: strict-origin-when-cross-origin";
|
||||||
more_set_headers "X-Frame-Options: ALLOW";
|
more_set_headers "X-Frame-Options: ALLOW";
|
||||||
more_set_headers "Pragma: public";
|
more_set_headers "Pragma: public";
|
||||||
more_set_headers "Cache-Control: public, must-revalidate, proxy-revalidate";
|
more_set_headers "Cache-Control: public, must-revalidate, proxy-revalidate";
|
||||||
alias __FINALPATH__/code/front/dist/embed.html;
|
alias __FINALPATH__/code/front/dist/embed.html;
|
||||||
expires 30d;
|
expires 30d;
|
||||||
}
|
}
|
||||||
|
|
||||||
location /federation/ {
|
location /federation/ {
|
||||||
include __FINALPATH__/code/deploy/funkwhale_proxy.conf;
|
include __FINALPATH__/code/deploy/funkwhale_proxy.conf;
|
||||||
proxy_pass http://127.0.0.1:__PORT__/federation/;
|
proxy_pass http://127.0.0.1:__PORT__/federation/;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
location /rest/ {
|
location /rest/ {
|
||||||
include __FINALPATH__/code/deploy/funkwhale_proxy.conf;
|
include __FINALPATH__/code/deploy/funkwhale_proxy.conf;
|
||||||
proxy_pass http://127.0.0.1:__PORT__/api/subsonic/rest/;
|
proxy_pass http://127.0.0.1:__PORT__/api/subsonic/rest/;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
location /.well-known/ {
|
location /.well-known/ {
|
||||||
include __FINALPATH__/code/deploy/funkwhale_proxy.conf;
|
include __FINALPATH__/code/deploy/funkwhale_proxy.conf;
|
||||||
proxy_pass http://127.0.0.1:__PORT__/.well-known/;
|
proxy_pass http://127.0.0.1:__PORT__/.well-known/;
|
||||||
}
|
}
|
||||||
|
|
||||||
location /media/ {
|
location /media/ {
|
||||||
alias __FINALPATH__/media/;
|
alias __FINALPATH__/media/;
|
||||||
}
|
}
|
||||||
|
|
||||||
location /_protected/media/ {
|
location /_protected/media/ {
|
||||||
# this is an internal location that is used to serve
|
# this is an internal location that is used to serve
|
||||||
# audio files once correct permission / authentication
|
# audio files once correct permission / authentication
|
||||||
# has been checked on API side
|
# has been checked on API side
|
||||||
internal;
|
internal;
|
||||||
alias __FINALPATH__/media/;
|
alias __FINALPATH__/media/;
|
||||||
}
|
}
|
||||||
|
|
||||||
location /_protected/music/ {
|
location /_protected/music/ {
|
||||||
internal;
|
internal;
|
||||||
alias __FINALPATH__/import/;
|
alias __FINALPATH__/import/;
|
||||||
}
|
}
|
||||||
|
|
||||||
location /staticfiles/ {
|
location /staticfiles/ {
|
||||||
# django static files
|
# django static files
|
||||||
alias __FINALPATH__/code/data/static/;
|
alias __FINALPATH__/code/data/static/;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue