@@ -132,6 +132,7 @@ export default (fastify, options, done) => {
132132 const httpUrl = `${ protocol } ://${ hostname } /http` ;
133133 const imageApi = `${ protocol } ://${ hostname } /image` ;
134134 const mediaProxyUrl = `${ protocol } ://${ hostname } /mediaProxy` ;
135+ const webdavProxyUrl = `${ protocol } ://${ hostname } /webdav/` ;
135136 const hostUrl = `${ hostname . split ( ':' ) [ 0 ] } ` ;
136137 const fServer = fastify . server ;
137138
@@ -155,6 +156,7 @@ export default (fastify, options, done) => {
155156 httpUrl,
156157 imageApi,
157158 mediaProxyUrl,
159+ webdavProxyUrl,
158160 hostUrl,
159161 hostname,
160162 fServer,
@@ -408,6 +410,7 @@ export default (fastify, options, done) => {
408410 const httpUrl = `${ protocol } ://${ hostname } /http` ;
409411 const imageApi = `${ protocol } ://${ hostname } /image` ;
410412 const mediaProxyUrl = `${ protocol } ://${ hostname } /mediaProxy` ;
413+ const webdavProxyUrl = `${ protocol } ://${ hostname } /webdav/` ;
411414 const hostUrl = `${ hostname . split ( ':' ) [ 0 ] } ` ;
412415 const fServer = fastify . server ;
413416
@@ -432,6 +435,7 @@ export default (fastify, options, done) => {
432435 httpUrl,
433436 imageApi,
434437 mediaProxyUrl,
438+ webdavProxyUrl,
435439 hostUrl,
436440 hostname,
437441 fServer,
@@ -547,6 +551,7 @@ export default (fastify, options, done) => {
547551 const httpUrl = `${ protocol } ://${ hostname } /http` ;
548552 const imageApi = `${ protocol } ://${ hostname } /image` ;
549553 const mediaProxyUrl = `${ protocol } ://${ hostname } /mediaProxy` ;
554+ const webdavProxyUrl = `${ protocol } ://${ hostname } /webdav/` ;
550555 const hostUrl = `${ hostname . split ( ':' ) [ 0 ] } ` ;
551556 const fServer = fastify . server ;
552557
@@ -571,6 +576,7 @@ export default (fastify, options, done) => {
571576 httpUrl,
572577 imageApi,
573578 mediaProxyUrl,
579+ webdavProxyUrl,
574580 hostUrl,
575581 hostname,
576582 getProxyUrl,
0 commit comments