use the right port on webdav service

This commit is contained in:
A.Unger
2019-12-13 10:37:06 +01:00
parent ded7b7249c
commit f46a49826a

View File

@@ -73,7 +73,7 @@ func configureWebDAV(cfg *config.Config) *svcconfig.Config {
cfg.WebDAV.Log.Pretty = cfg.Log.Pretty
cfg.WebDAV.Log.Color = cfg.Log.Color
cfg.WebDAV.Tracing.Enabled = false
cfg.WebDAV.HTTP.Addr = "localhost:9108"
cfg.WebDAV.HTTP.Addr = "localhost:9115"
cfg.WebDAV.HTTP.Root = "/"
return cfg.WebDAV