-
|
I can't change the Base URL of the webserver. Whenever I change it and save, it reverts back to the previous entry. I am using Zerotier, but no longer need it, and the current entry in the Webserver Base URL is a Zerotier URL. I am trying to change it to the server's LAN IP (as I have successfully done in the Stream Base URL) but the setting won't "stick". I don't get any errors, it just doesn't update the URL. I have restarted the Docker container after updating the URL and saving, but that doesn't help either.
thanks |
Beta Was this translation helpful? Give feedback.
Replies: 10 comments 8 replies
-
|
I have the same problem with the latest beta image music-assistant | 2025-12-14 13:53:19.543 ERROR (MainThread) [music_assistant.webserver] Error handling message: config/core/save: Command remote_access/info is already registeredTested changing the webserver base URL with the following settings. The base URL is my custom Traefik Docker network:
This is the services:
music-assistant:
image: ghcr.io/music-assistant/server:beta
container_name: music-assistant
restart: unless-stopped
# Network mode must be set to host for MA to work correctly (i.e. discover Sonos player)
network_mode: host
volumes:
- ./data-beta:/data/
# privileged caps needed to mount smb folders within the container
#cap_add:
# - SYS_ADMIN
# - DAC_READ_SEARCH
#privileged: true
environment:
# Provide logging level as environment variable.
# default=info, possible=(critical, error, warning, info, debug, verbose)
- LOG_LEVEL=info
labels:
- traefik.enable=true
# Router
- traefik.http.routers.musicassistant.rule=HostRegexp(`^musicassistant\.home\.(arpa|internal)$`)
- traefik.http.routers.musicassistant.tls=true
# Services
- traefik.http.routers.musicassistant.service=musicassistant
- traefik.http.services.musicassistant.loadbalancer.server.port=8095
networks: {} |
Beta Was this translation helpful? Give feedback.
-
|
stop musicassistant |
Beta Was this translation helpful? Give feedback.
-
|
yes. pushed save |
Beta Was this translation helpful? Give feedback.
-
|
Previous log was from ghcr.io/music-assistant/server:2.7.0b26 just tried ghcr.io/music-assistant/server:2.7.0.dev2025121403 |
Beta Was this translation helpful? Give feedback.
-
|
If I go to settings >> system >> webserver >> base url and make change. If I go to settings >> about Currently my about shows Base URL as http://afasnafhdsadfdsafasd:8095. I typed in gibberish. settings.json show |
Beta Was this translation helpful? Give feedback.
-
|
ghcr.io/music-assistant/server:2.7.0.dev2025121403 ghcr.io/music-assistant/server:2.7.0b29 EDIT |
Beta Was this translation helpful? Give feedback.
-
|
Same here, cannot change base_url. When manually adding it into the config file, it is removed on next restart. |
Beta Was this translation helpful? Give feedback.
-
|
Check the workaround mentioned here: |
Beta Was this translation helpful? Give feedback.
-
|
It seems to work with the code below. However, this is quite confusing
"webserver": {
"values": {
"base_url": "https://mass.example.com:8095",
"enable_ssl": true,
"ssl_certificate": "/path/to/certificate.crt",
"ssl_private_key": "/path/to/privatekey.key"
},
"domain": "webserver",
"last_error": null
} |
Beta Was this translation helpful? Give feedback.
-
|
Looks like the bug got fixed here #4547. The fix is part of the 2.7.4 release. |
Beta Was this translation helpful? Give feedback.
Looks like the bug got fixed here #4547. The fix is part of the 2.7.4 release.