2017-06-23 21:00:42 +00:00
|
|
|
user nginx;
|
|
|
|
worker_processes 1;
|
|
|
|
|
|
|
|
error_log /var/log/nginx/error.log warn;
|
|
|
|
pid /var/run/nginx.pid;
|
|
|
|
|
|
|
|
|
|
|
|
events {
|
|
|
|
worker_connections 1024;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
http {
|
|
|
|
include /etc/nginx/mime.types;
|
|
|
|
default_type application/octet-stream;
|
|
|
|
|
|
|
|
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
|
|
|
'$status $body_bytes_sent "$http_referer" '
|
|
|
|
'"$http_user_agent" "$http_x_forwarded_for"';
|
|
|
|
|
|
|
|
access_log /var/log/nginx/access.log main;
|
|
|
|
|
|
|
|
sendfile on;
|
|
|
|
|
|
|
|
keepalive_timeout 65;
|
|
|
|
|
2018-12-19 13:03:21 +00:00
|
|
|
upstream funkwhale-api {
|
|
|
|
server ${FUNKWHALE_API_IP}:${FUNKWHALE_API_PORT};
|
|
|
|
}
|
|
|
|
upstream funkwhale-front {
|
|
|
|
server ${FUNKWHALE_FRONT_IP}:${FUNKWHALE_FRONT_PORT};
|
|
|
|
}
|
2022-11-22 19:23:13 +00:00
|
|
|
|
|
|
|
# Required for websocket support.
|
|
|
|
map $http_upgrade $connection_upgrade {
|
|
|
|
default upgrade;
|
|
|
|
'' close;
|
|
|
|
}
|
|
|
|
|
2017-06-23 21:00:42 +00:00
|
|
|
server {
|
2022-11-22 19:23:13 +00:00
|
|
|
listen 80;
|
|
|
|
listen [::]:80;
|
2017-06-23 21:00:42 +00:00
|
|
|
charset utf-8;
|
2022-11-22 19:23:13 +00:00
|
|
|
client_max_body_size ${NGINX_MAX_BODY_SIZE};
|
2018-03-29 18:30:24 +00:00
|
|
|
include /etc/nginx/funkwhale_proxy.conf;
|
2022-11-22 19:23:13 +00:00
|
|
|
|
|
|
|
add_header 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'";
|
|
|
|
add_header Referrer-Policy "strict-origin-when-cross-origin";
|
|
|
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
|
|
|
add_header Service-Worker-Allowed "/";
|
|
|
|
|
2018-12-19 22:46:53 +00:00
|
|
|
# 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;
|
2022-11-22 19:23:13 +00:00
|
|
|
# end of compression settings
|
2018-12-19 13:03:21 +00:00
|
|
|
|
2022-11-05 18:12:58 +00:00
|
|
|
location /api/ {
|
2022-11-22 19:23:13 +00:00
|
|
|
include /etc/nginx/funkwhale_proxy.conf;
|
|
|
|
# This is needed if you have file import via upload enabled.
|
|
|
|
client_max_body_size ${NGINX_MAX_BODY_SIZE};
|
2022-12-06 14:29:09 +00:00
|
|
|
proxy_pass http://funkwhale-api;
|
2022-11-22 19:23:13 +00:00
|
|
|
}
|
2019-07-10 13:11:29 +00:00
|
|
|
|
2022-11-05 18:12:58 +00:00
|
|
|
location / {
|
2022-12-06 14:29:09 +00:00
|
|
|
proxy_pass http://funkwhale-front;
|
2022-11-22 19:23:13 +00:00
|
|
|
expires 1d;
|
2017-06-23 21:00:42 +00:00
|
|
|
}
|
2022-11-22 19:23:13 +00:00
|
|
|
|
2022-11-26 20:27:40 +00:00
|
|
|
location = /embed.html {
|
2022-09-26 18:34:13 +00:00
|
|
|
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:";
|
2019-07-18 09:08:18 +00:00
|
|
|
add_header Referrer-Policy "strict-origin-when-cross-origin";
|
2022-11-22 19:23:13 +00:00
|
|
|
|
2022-12-06 14:29:09 +00:00
|
|
|
proxy_pass http://funkwhale-front;
|
2022-11-22 19:23:13 +00:00
|
|
|
expires 1d;
|
2019-07-18 09:08:18 +00:00
|
|
|
}
|
2018-12-19 13:03:21 +00:00
|
|
|
|
2022-11-22 19:23:13 +00:00
|
|
|
location /federation/ {
|
2018-03-29 18:30:24 +00:00
|
|
|
include /etc/nginx/funkwhale_proxy.conf;
|
2022-12-06 14:29:09 +00:00
|
|
|
proxy_pass http://funkwhale-api;
|
2017-06-23 21:00:42 +00:00
|
|
|
}
|
2018-12-19 13:03:21 +00:00
|
|
|
|
2022-11-22 19:23:13 +00:00
|
|
|
# You can comment this if you do not plan to use the Subsonic API.
|
2018-05-09 18:38:26 +00:00
|
|
|
location /rest/ {
|
|
|
|
include /etc/nginx/funkwhale_proxy.conf;
|
2018-12-19 13:03:21 +00:00
|
|
|
proxy_pass http://funkwhale-api/api/subsonic/rest/;
|
|
|
|
}
|
|
|
|
|
2023-03-17 16:27:04 +00:00
|
|
|
location /media/__sized__/ {
|
|
|
|
alias /protected/media/__sized__/;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /media/attachments/ {
|
|
|
|
alias /protected/media/attachments/;
|
2018-12-19 13:03:21 +00:00
|
|
|
}
|
|
|
|
|
2022-11-22 19:23:13 +00:00
|
|
|
location /.well-known/ {
|
|
|
|
include /etc/nginx/funkwhale_proxy.conf;
|
2022-12-06 14:29:09 +00:00
|
|
|
proxy_pass http://funkwhale-api;
|
2022-11-22 19:23:13 +00:00
|
|
|
}
|
|
|
|
|
2023-03-17 14:34:48 +00:00
|
|
|
# Allow direct access to only specific subdirectories in /media
|
|
|
|
location /media/__sized__/ {
|
|
|
|
alias /protected/media/__sized__/;
|
|
|
|
add_header Access-Control-Allow-Origin '*';
|
|
|
|
}
|
|
|
|
|
|
|
|
# Allow direct access to only specific subdirectories in /media
|
|
|
|
location /media/attachments/ {
|
|
|
|
alias /protected/media/attachments/;
|
2022-11-22 19:23:13 +00:00
|
|
|
add_header Access-Control-Allow-Origin '*';
|
2018-12-19 13:03:21 +00:00
|
|
|
}
|
|
|
|
|
2022-11-22 19:23:13 +00: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/(.+) {
|
2018-12-19 13:03:21 +00:00
|
|
|
internal;
|
2022-11-22 19:23:13 +00:00
|
|
|
alias /protected/media/$1; # NON-S3
|
|
|
|
# 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 '*';
|
2018-12-19 13:03:21 +00:00
|
|
|
}
|
2022-11-22 19:23:13 +00: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.
|
2018-12-19 13:03:21 +00:00
|
|
|
internal;
|
2022-11-22 19:23:13 +00:00
|
|
|
alias /music/;
|
|
|
|
add_header Access-Control-Allow-Origin '*';
|
2019-07-18 10:51:57 +00:00
|
|
|
}
|
2022-12-02 14:06:38 +00:00
|
|
|
|
|
|
|
location /manifest.json {
|
|
|
|
return 302 /api/v1/instance/spa-manifest.json;
|
|
|
|
}
|
2023-03-17 18:50:10 +00:00
|
|
|
|
|
|
|
location /staticfiles/ {
|
|
|
|
alias /staticfiles/;
|
|
|
|
}
|
|
|
|
|
2017-06-23 21:00:42 +00:00
|
|
|
}
|
|
|
|
}
|