Im trying to setup funkwhale in docker-compose app in truenas scale. I followed official guide - installing funkwhale using docker. btw theres an error in that guide in "Set up your reverse proxy" at step 3. error in .env location. its located at /srv/funkwhale/ and not in /srv/funkwhale/config. any way i followed this guide and i belice i setup everything correctly, but at setuping nginx i hit a wall. my nginx is sitting on a seperate host and im not sure hot configuration should look like in that case. In my .env file I'm using this vars: FUNKWHALE_API_IP=0.0.0.0, FUNKWHALE_PROTOCOL=http, FUNKWHALE_HOSTNAME=myDomain <- here im not sure should i use docker-compose ip or my domain that i handled my external nginx. herens my config for nginx host
server {
set $forward_scheme http;
set $server "192.168.255.61";
set $port 5000;
listen 80;
listen [::]:80;
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name myDomain;
# Let's Encrypt SSL
include conf.d/include/letsencrypt-acme-challenge.conf;
include conf.d/include/ssl-ciphers.conf;
ssl_certificate /etc/letsencrypt/live/npm-27/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/npm-27/privkey.pem;
# HSTS (ngx_http_headers_module is required) (63072000 seconds = 2 years)
add_header Strict-Transport-Security "max-age=63072000; preload" always;
# Force SSL
include conf.d/include/force-ssl.conf;
access_log /data/logs/proxy-host-11_access.log proxy;
error_log /data/logs/proxy-host-11_error.log warn;
location / {
proxy_pass http://$server:5000;
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 $http_x_forwarded_proto;
proxy_set_header X-Forwarded-Host $http_x_forwarded_host;
proxy_set_header X-Forwarded-Port $http_x_forwarded_port;
proxy_redirect off;
#websocket support
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
}
# Custom
include /data/nginx/custom/server_proxy[.]conf;
}
Code outside location / is outogenerated by nginx proxy manager and i cant edit it.