76 lines
2.4 KiB
Nginx Configuration File
76 lines
2.4 KiB
Nginx Configuration File
# Ensure you update at least the server_name variables to match your own
|
|
# domain
|
|
|
|
upstream funkwhale-api {
|
|
# depending on your setup, you may want to udpate this
|
|
server localhost:5000;
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
# update this to match your instance name
|
|
server_name demo.funkwhale.audio;
|
|
# useful for Let's Encrypt
|
|
location /.well-known/acme-challenge/ { allow all; }
|
|
location / { return 301 https://$host$request_uri; }
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
# update this to match your instance name
|
|
server_name demo.funkwhale.audio;
|
|
|
|
# TLS
|
|
# 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
|
|
# don't want to run funkwhale behind https (this is not recommanded)
|
|
# 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/demo.funkwhale.audio/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/demo.funkwhale.audio/privkey.pem;
|
|
# HSTS
|
|
add_header Strict-Transport-Security "max-age=31536000";
|
|
|
|
root /srv/funkwhale/front/dist;
|
|
|
|
location / {
|
|
try_files $uri $uri/ @rewrites;
|
|
}
|
|
|
|
location @rewrites {
|
|
rewrite ^(.+)$ /index.html last;
|
|
}
|
|
location /api/ {
|
|
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;
|
|
proxy_pass http://funkwhale-api/api/;
|
|
}
|
|
location /media/ {
|
|
alias /srv/funkwhale/data/media/;
|
|
}
|
|
|
|
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 /srv/funkwhale/data/media;
|
|
}
|
|
|
|
location /staticfiles/ {
|
|
# django static files
|
|
alias /srv/funkwhale/data/static/;
|
|
}
|
|
}
|