mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add BaseURL configuration (fixes #103)
This commit is contained in:
parent
b8eb22d162
commit
75cd21da1f
17 changed files with 61 additions and 25 deletions
4
main.go
4
main.go
|
@ -19,7 +19,7 @@ func main() {
|
|||
panic(fmt.Sprintf("Could not create the Subsonic API router. Aborting! err=%v", err))
|
||||
}
|
||||
a := CreateServer(conf.Server.MusicFolder)
|
||||
a.MountRouter("/rest", subsonic)
|
||||
a.MountRouter("/app", CreateAppRouter("/app"))
|
||||
a.MountRouter(consts.URLPathSubsonicAPI, subsonic)
|
||||
a.MountRouter(consts.URLPathUI, CreateAppRouter())
|
||||
a.Run(":" + conf.Server.Port)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue