mirror of
https://github.com/YunoHost-Apps/funkwhale_ynh.git
synced 2024-09-03 18:36:24 +02:00
upgrade nginx
This commit is contained in:
parent
2184b8797f
commit
07a3bb7bcf
7 changed files with 158 additions and 136 deletions
13
conf/funkwhale_proxy.conf
Normal file
13
conf/funkwhale_proxy.conf
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# global proxy conf
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header X-Forwarded-Host $host:$server_port;
|
||||||
|
proxy_set_header X-Forwarded-Port $server_port;
|
||||||
|
proxy_redirect off;
|
||||||
|
|
||||||
|
# websocket support
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection $connection_upgrade;
|
192
conf/nginx.conf
192
conf/nginx.conf
|
@ -1,106 +1,119 @@
|
||||||
root __INSTALL_DIR__/front/dist;
|
|
||||||
|
# HSTS
|
||||||
|
add_header Strict-Transport-Security "max-age=31536000";
|
||||||
|
|
||||||
|
# General configs
|
||||||
|
root ${FUNKWHALE_FRONTEND_PATH};
|
||||||
|
client_max_body_size ${NGINX_MAX_BODY_SIZE};
|
||||||
|
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
|
||||||
|
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 "/";
|
||||||
|
|
||||||
location /api/ {
|
location /api/ {
|
||||||
|
include /etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf;
|
||||||
|
# This is needed if you have file import via upload enabled.
|
||||||
|
client_max_body_size ${NGINX_MAX_BODY_SIZE};
|
||||||
|
proxy_pass http://127.0.0.1:__PORT__;
|
||||||
|
}
|
||||||
|
|
||||||
# global proxy conf
|
location ~ ^/library/(albums|tracks|artists|playlists)/ {
|
||||||
proxy_set_header Host $host;
|
include /etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_pass http://127.0.0.1:__PORT__;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
}
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
proxy_set_header X-Forwarded-Host $host:$server_port;
|
|
||||||
proxy_set_header X-Forwarded-Port $server_port;
|
|
||||||
proxy_redirect off;
|
|
||||||
|
|
||||||
# websocket support
|
location /channels/ {
|
||||||
proxy_http_version 1.1;
|
include /etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf;
|
||||||
proxy_set_header Upgrade $http_upgrade;
|
proxy_pass http://127.0.0.1:__PORT__;
|
||||||
proxy_set_header Connection $connection_upgrade;
|
}
|
||||||
|
|
||||||
# this is needed if you have file import via upload enabled
|
location ~ ^/@(vite-plugin-pwa|vite|id)/ {
|
||||||
client_max_body_size 100M;
|
include /etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf;
|
||||||
|
alias ${FUNKWHALE_FRONTEND_PATH}/;
|
||||||
|
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__;
|
proxy_pass http://127.0.0.1:__PORT__;
|
||||||
}
|
}
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
alias __INSTALL_DIR__/front/dist/;
|
|
||||||
expires 1d;
|
expires 1d;
|
||||||
|
include /etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf;
|
||||||
|
alias ${FUNKWHALE_FRONTEND_PATH}/;
|
||||||
try_files $uri $uri/ /index.html;
|
try_files $uri $uri/ /index.html;
|
||||||
}
|
}
|
||||||
|
|
||||||
location /embed.html {
|
location ~ "/(front/)?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:";
|
alias ${FUNKWHALE_FRONTEND_PATH}/embed.html;
|
||||||
more_set_headers "Referrer-Policy: strict-origin-when-cross-origin";
|
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";
|
||||||
|
|
||||||
alias __INSTALL_DIR__/front/dist/embed.html;
|
|
||||||
expires 1d;
|
expires 1d;
|
||||||
}
|
}
|
||||||
|
|
||||||
location /federation/ {
|
location /federation/ {
|
||||||
|
include /etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf;
|
||||||
# global proxy conf
|
proxy_pass http://127.0.0.1:__PORT__;
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
proxy_set_header X-Forwarded-Host $host:$server_port;
|
|
||||||
proxy_set_header X-Forwarded-Port $server_port;
|
|
||||||
proxy_redirect off;
|
|
||||||
|
|
||||||
# websocket support
|
|
||||||
proxy_http_version 1.1;
|
|
||||||
proxy_set_header Upgrade $http_upgrade;
|
|
||||||
proxy_set_header Connection $connection_upgrade;
|
|
||||||
|
|
||||||
proxy_pass http://127.0.0.1:__PORT__/federation/;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# You can comment this if you do not plan to use the Subsonic API
|
# You can comment this if you do not plan to use the Subsonic API.
|
||||||
location /rest/ {
|
location /rest/ {
|
||||||
|
include /etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf;
|
||||||
# global proxy conf
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
proxy_set_header X-Forwarded-Host $host:$server_port;
|
|
||||||
proxy_set_header X-Forwarded-Port $server_port;
|
|
||||||
proxy_redirect off;
|
|
||||||
|
|
||||||
# websocket support
|
|
||||||
proxy_http_version 1.1;
|
|
||||||
proxy_set_header Upgrade $http_upgrade;
|
|
||||||
proxy_set_header Connection $connection_upgrade;
|
|
||||||
|
|
||||||
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 /etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf;
|
||||||
# global proxy conf
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
proxy_set_header X-Forwarded-Host $host:$server_port;
|
|
||||||
proxy_set_header X-Forwarded-Port $server_port;
|
|
||||||
proxy_redirect off;
|
|
||||||
|
|
||||||
# websocket support
|
|
||||||
proxy_http_version 1.1;
|
|
||||||
proxy_set_header Upgrade $http_upgrade;
|
|
||||||
proxy_set_header Connection $connection_upgrade;
|
|
||||||
|
|
||||||
proxy_pass http://127.0.0.1:__PORT__;
|
proxy_pass http://127.0.0.1:__PORT__;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Allow direct access to only specific subdirectories in /media
|
||||||
location /media/__sized__/ {
|
location /media/__sized__/ {
|
||||||
alias __DATA_DIR__/data/media/__sized__/;
|
alias ${MEDIA_ROOT}/__sized__/;
|
||||||
more_set_headers "Access-Control-Allow-Origin: *";
|
add_header Access-Control-Allow-Origin '*';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Allow direct access to only specific subdirectories in /media
|
||||||
location /media/attachments/ {
|
location /media/attachments/ {
|
||||||
alias __DATA_DIR__/data/media/attachments/;
|
alias ${MEDIA_ROOT}/attachments/;
|
||||||
more_set_headers "Access-Control-Allow-Origin: *";
|
add_header Access-Control-Allow-Origin '*';
|
||||||
|
}
|
||||||
|
|
||||||
|
# Allow direct access to only specific subdirectories in /media
|
||||||
|
location /media/dynamic_preferences/ {
|
||||||
|
alias ${MEDIA_ROOT}/dynamic_preferences/;
|
||||||
|
add_header Access-Control-Allow-Origin '*';
|
||||||
}
|
}
|
||||||
|
|
||||||
# This is an internal location that is used to serve
|
# This is an internal location that is used to serve
|
||||||
|
@ -108,37 +121,30 @@ location /media/attachments/ {
|
||||||
# has been checked on API side.
|
# has been checked on API side.
|
||||||
# Comment the "NON-S3" commented lines and uncomment "S3" commented lines
|
# Comment the "NON-S3" commented lines and uncomment "S3" commented lines
|
||||||
# if you're storing media files in a S3 bucket.
|
# if you're storing media files in a S3 bucket.
|
||||||
location /_protected/media/ {
|
location ~ /_protected/media/(.+) {
|
||||||
internal;
|
internal;
|
||||||
alias __DATA_DIR__/data/media/$1; # NON-S3
|
alias ${MEDIA_ROOT}/$1; # NON-S3
|
||||||
# Needed to ensure DSub auth isn't forwarded to S3/Minio, see #932.
|
# Needed to ensure DSub auth isn't forwarded to S3/Minio, see #932.
|
||||||
# proxy_set_header Authorization ""; # S3
|
# proxy_set_header Authorization ""; # S3
|
||||||
# proxy_pass $1; # S3
|
# proxy_pass $1; # S3
|
||||||
more_set_headers "Access-Control-Allow-Origin: *";
|
add_header Access-Control-Allow-Origin '*';
|
||||||
}
|
}
|
||||||
|
|
||||||
location /_protected/music/ {
|
location /_protected/music/ {
|
||||||
# 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
|
# local music files once correct permission / authentication
|
||||||
# has been checked on API side
|
# has been checked on API side.
|
||||||
# Set this to the same value as your MUSIC_DIRECTORY_PATH setting
|
# Set this to the same value as your MUSIC_DIRECTORY_PATH setting.
|
||||||
internal;
|
internal;
|
||||||
alias __DATA_DIR__/data/music/;
|
alias ${MUSIC_DIRECTORY_PATH}/;
|
||||||
more_set_headers "Access-Control-Allow-Origin: *";
|
add_header Access-Control-Allow-Origin '*';
|
||||||
}
|
|
||||||
|
|
||||||
# Allow direct access to /staticfiles
|
|
||||||
location /staticfiles/ {
|
|
||||||
alias __DATA_DIR__/data/static/;
|
|
||||||
more_set_headers "Access-Control-Allow-Origin: *";
|
|
||||||
}
|
|
||||||
|
|
||||||
# Allow direct access to only specific subdirectories in /media
|
|
||||||
location /media/dynamic_preferences/ {
|
|
||||||
alias __DATA_DIR__/data/media/dynamic_preferences/;
|
|
||||||
more_set_headers "Access-Control-Allow-Origin: *";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
location /manifest.json {
|
location /manifest.json {
|
||||||
return 302 /api/v1/instance/spa-manifest.json;
|
# If the reverse proxy is terminating SSL, nginx gets confused and redirects to http, hence the full URL
|
||||||
|
return 302 ${FUNKWHALE_PROTOCOL}://${FUNKWHALE_HOSTNAME}/api/v1/instance/spa-manifest.json;
|
||||||
|
}
|
||||||
|
|
||||||
|
location /staticfiles/ {
|
||||||
|
alias ${STATIC_ROOT}/;
|
||||||
}
|
}
|
|
@ -31,7 +31,7 @@ ynh_backup --src_path="$data_dir" --is_big
|
||||||
# BACKUP THE NGINX CONFIGURATION
|
# BACKUP THE NGINX CONFIGURATION
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
||||||
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# BACKUP FAIL2BAN CONFIGURATION
|
# BACKUP FAIL2BAN CONFIGURATION
|
||||||
|
|
|
@ -33,6 +33,7 @@ ynh_script_progression --message="Configuring NGINX web server..." --weight=1
|
||||||
|
|
||||||
# Create a dedicated NGINX config
|
# Create a dedicated NGINX config
|
||||||
ynh_add_nginx_config
|
ynh_add_nginx_config
|
||||||
|
ynh_add_config --template="funkwhale_proxy.conf" --destination="/etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# SPECIFIC SETUP
|
# SPECIFIC SETUP
|
||||||
|
|
|
@ -57,6 +57,7 @@ ynh_script_progression --message="Removing NGINX web server configuration..." --
|
||||||
|
|
||||||
# Remove the dedicated NGINX config
|
# Remove the dedicated NGINX config
|
||||||
ynh_remove_nginx_config
|
ynh_remove_nginx_config
|
||||||
|
ynh_secure_remove --file="/etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# REMOVE LOGS
|
# REMOVE LOGS
|
||||||
|
|
|
@ -39,7 +39,7 @@ chown -R $app:www-data "$data_dir/"
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Restoring the NGINX web server configuration..." --weight=1
|
ynh_script_progression --message="Restoring the NGINX web server configuration..." --weight=1
|
||||||
|
|
||||||
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# RESTORE THE POSTGRESQL DATABASE
|
# RESTORE THE POSTGRESQL DATABASE
|
||||||
|
|
|
@ -50,6 +50,7 @@ ynh_script_progression --message="Upgrading NGINX web server configuration..." -
|
||||||
|
|
||||||
# Create a dedicated NGINX config
|
# Create a dedicated NGINX config
|
||||||
ynh_add_nginx_config
|
ynh_add_nginx_config
|
||||||
|
ynh_add_config --template="funkwhale_proxy.conf" --destination="/etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# Assure correct permissions to $data_dir
|
# Assure correct permissions to $data_dir
|
||||||
|
|
Loading…
Reference in a new issue