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

150 lines
5.5 KiB
Nginx Configuration File
Raw Normal View History

2023-12-13 19:35:20 +01:00
# HSTS
2023-12-13 19:51:14 +01:00
more_set_headers Strict-Transport-Security "max-age=31536000";
2023-12-13 19:35:20 +01:00
# General configs
2023-12-13 19:51:14 +01:00
root __INSTALL_DIR__/front/dist;
client_max_body_size 100M;
2023-12-13 19:35:20 +01:00
charset utf-8;
# compression settings
gzip on;
gzip_comp_level 5;
gzip_min_length 256;
gzip_proxied any;
gzip_vary on;
gzip_types
application/javascript
application/vnd.geo+json
application/vnd.ms-fontobject
application/x-font-ttf
application/x-web-app-manifest+json
font/opentype
image/bmp
image/svg+xml
image/x-icon
text/cache-manifest
text/css
text/plain
text/vcard
text/vnd.rim.location.xloc
text/vtt
text/x-component
text/x-cross-domain-policy;
# end of compression settings
# headers
2023-12-13 19:51:14 +01:00
more_set_headers Content-Security-Policy "default-src 'self'; connect-src https: wss: http: ws: 'self' 'unsafe-eval'; script-src 'self' 'wasm-unsafe-eval'; style-src https: http: 'self' 'unsafe-inline'; img-src https: http: 'self' data:; font-src https: http: 'self' data:; media-src https: http: 'self' data:; object-src 'none'";
more_set_headers Referrer-Policy "strict-origin-when-cross-origin";
more_set_headers X-Frame-Options "SAMEORIGIN" always;
more_set_headers Service-Worker-Allowed "/";
2023-12-13 19:35:20 +01:00
location /api/ {
include /etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf;
# This is needed if you have file import via upload enabled.
2023-12-13 19:51:14 +01:00
client_max_body_size 100M;
2023-12-13 19:35:20 +01:00
proxy_pass http://127.0.0.1:__PORT__;
}
location ~ ^/library/(albums|tracks|artists|playlists)/ {
include /etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf;
proxy_pass http://127.0.0.1:__PORT__;
}
location /channels/ {
include /etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf;
proxy_pass http://127.0.0.1:__PORT__;
}
location ~ ^/@(vite-plugin-pwa|vite|id)/ {
include /etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf;
2023-12-13 19:51:14 +01:00
alias __INSTALL_DIR__/front/dist/;
2023-12-13 19:35:20 +01:00
try_files $uri $uri/ /index.html;
}
location /@ {
include /etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf;
proxy_pass http://127.0.0.1:__PORT__;
}
location / {
expires 1d;
include /etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf;
2023-12-13 19:51:14 +01:00
alias __INSTALL_DIR__/front/dist/;
2023-12-13 19:35:20 +01:00
try_files $uri $uri/ /index.html;
}
location ~ "/(front/)?embed.html" {
2023-12-13 19:51:14 +01:00
alias __INSTALL_DIR__/front/dist/;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";
2023-12-13 19:35:20 +01:00
expires 1d;
}
location /federation/ {
include /etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf;
proxy_pass http://127.0.0.1:__PORT__;
}
# You can comment this if you do not plan to use the Subsonic API.
location /rest/ {
include /etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf;
proxy_pass http://127.0.0.1:__PORT__/api/subsonic/rest/;
}
location /.well-known/ {
include /etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf;
proxy_pass http://127.0.0.1:__PORT__;
}
# Allow direct access to only specific subdirectories in /media
location /media/__sized__/ {
2023-12-13 19:51:14 +01:00
alias __DATA_DIR__/data/media/__sized__/;
more_set_headers "Access-Control-Allow-Origin: *";
2023-12-13 19:35:20 +01:00
}
# Allow direct access to only specific subdirectories in /media
location /media/attachments/ {
2023-12-13 19:51:14 +01:00
alias __DATA_DIR__/data/media/attachments/;
more_set_headers "Access-Control-Allow-Origin: *";
2023-12-13 19:35:20 +01:00
}
# Allow direct access to only specific subdirectories in /media
location /media/dynamic_preferences/ {
2023-12-13 19:51:14 +01:00
alias __DATA_DIR__/data/media/dynamic_preferences/;
more_set_headers "Access-Control-Allow-Origin: *";
2023-12-13 19:35:20 +01:00
}
# This is an internal location that is used to serve
# media (uploaded) files once correct permission / authentication
# has been checked on API side.
# Comment the "NON-S3" commented lines and uncomment "S3" commented lines
# if you're storing media files in a S3 bucket.
location ~ /_protected/media/(.+) {
internal;
2023-12-13 19:51:14 +01:00
alias __DATA_DIR__/data/media/$1; # NON-S3
2023-12-13 19:35:20 +01:00
# Needed to ensure DSub auth isn't forwarded to S3/Minio, see #932.
# proxy_set_header Authorization ""; # S3
# proxy_pass $1; # S3
2023-12-13 19:51:14 +01:00
more_set_headers "Access-Control-Allow-Origin: *";
2023-12-13 19:35:20 +01:00
}
location /_protected/music/ {
# This is an internal location that is used to serve
# local music files once correct permission / authentication
# has been checked on API side.
# Set this to the same value as your MUSIC_DIRECTORY_PATH setting.
internal;
2023-12-13 19:51:14 +01:00
alias __DATA_DIR__/data/music/;
more_set_headers "Access-Control-Allow-Origin: *";
2023-12-13 19:35:20 +01:00
}
location /manifest.json {
# If the reverse proxy is terminating SSL, nginx gets confused and redirects to http, hence the full URL
2023-12-13 19:51:14 +01:00
return 302 https://__DOMAIN__/api/v1/instance/spa-manifest.json;
2023-12-13 19:35:20 +01:00
}
location /staticfiles/ {
2023-12-13 19:51:14 +01:00
alias __DATA_DIR__/data/static/;
2023-12-13 19:35:20 +01:00
}