Open chilcano opened 2 months ago
Changing from local_web_path="https://ampache.my-fqdn:80"
to local_web_path="http://localhost"
in ampache/config/ampache.cfg.php
fixed the problem. Once changed I restarted the Ampache service running in docker: docker compose restart ampache
You can see the current value of local_web_path
through WebUI > Admin > Server Config > Ampache Debug
.
The ampache.cfg.php
includes information about running it behind of proxy and here as well:
https://github.com/ampache/ampache-docker?tab=readme-ov-file#set-the-local_web_path
Hope this helps.
Hi there. I've deployed
ampache
andcaddy
using docker compose successfully. Ampache works from its Web UI, however It doesn't work when trying to play/stream through any Subsonic API-based Android App. I only can browse songs, albums, etc.My config is:
Caddyfile
*.my-fqdn:8443 { log tls { dns duckdns {env.DNS_PROVIDER_TOKEN} }
@ampache host ampache.my-fqdn handle @ampache { reverse_proxy ampache:80 } }
{ http_port 8080 https_port 8443
log { output file /logs/caddy.log } }
*.my-fqdn:8443 { log tls { dns duckdns {env.DNS_PROVIDER_TOKEN} }
@ampache host ampache.my-fqdn handle @ampache {
Rewrite rules for Subsonic backend
} }