funkwhale/deploy/nginx.template

99 wiersze
3.0 KiB
Plaintext
Czysty Zwykły widok Historia

# This file was generated from funkwhale.template
2017-07-17 20:00:32 +00:00
upstream funkwhale-api {
2018-09-13 15:31:06 +00:00
# depending on your setup, you may want to update this
server ${FUNKWHALE_API_IP}:${FUNKWHALE_API_PORT};
}
server {
2017-07-17 20:00:32 +00:00
listen 80;
listen [::]:80;
# update this to match your instance name
server_name ${FUNKWHALE_HOSTNAME};
2017-07-17 20:00:32 +00:00
# useful for Let's Encrypt
location /.well-known/acme-challenge/ { allow all; }
location / { return 301 https://$host$request_uri; }
}
# required for websocket support
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name ${FUNKWHALE_HOSTNAME};
# TLS
2017-07-17 20:00:32 +00:00
# Feel free to use your own configuration for SSL here or simply remove the
# lines and move the configuration to the previous server block if you
2018-06-25 21:48:28 +00:00
# don't want to run funkwhale behind https (this is not recommended)
2017-07-17 20:00:32 +00:00
# have a look here for let's encrypt configuration:
# https://certbot.eff.org/all-instructions/#debian-9-stretch-nginx
ssl_protocols TLSv1.2;
ssl_ciphers HIGH:!MEDIUM:!LOW:!aNULL:!NULL:!SHA;
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:10m;
ssl_certificate /etc/letsencrypt/live/${FUNKWHALE_HOSTNAME}/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/${FUNKWHALE_HOSTNAME}/privkey.pem;
# HSTS
add_header Strict-Transport-Security "max-age=31536000";
root ${FUNKWHALE_FRONTEND_PATH};
location / {
include /etc/nginx/funkwhale_proxy.conf;
2017-12-27 22:32:02 +00:00
# this is needed if you have file import via upload enabled
client_max_body_size ${NGINX_MAX_BODY_SIZE};
proxy_pass http://funkwhale-api/;
}
location /front/ {
2018-12-19 14:35:23 +00:00
alias ${FUNKWHALE_FRONTEND_PATH}/;
}
location /federation/ {
include /etc/nginx/funkwhale_proxy.conf;
proxy_pass http://funkwhale-api/federation/;
}
# You can comment this if you do not plan to use the Subsonic API
location /rest/ {
include /etc/nginx/funkwhale_proxy.conf;
proxy_pass http://funkwhale-api/api/subsonic/rest/;
}
location /.well-known/ {
include /etc/nginx/funkwhale_proxy.conf;
proxy_pass http://funkwhale-api/.well-known/;
}
location /media/ {
alias ${MEDIA_ROOT}/;
}
location /_protected/media {
# this is an internal location that is used to serve
# audio files once correct permission / authentication
# has been checked on API side
internal;
alias ${MEDIA_ROOT};
}
location /_protected/music {
# this is an internal location that is used to serve
# audio files once correct permission / authentication
# has been checked on API side
2018-06-10 20:51:24 +00:00
# Set this to the same value as your MUSIC_DIRECTORY_PATH setting
internal;
alias ${MUSIC_DIRECTORY_SERVE_PATH};
}
location /staticfiles/ {
# django static files
alias ${STATIC_ROOT}/;
}
}