Calling
Requests to the WebDAV Proxy are forwarded using the path:
- z.B. https://dracoon.team/webdav
Config (WebDAV Proxy)
Path
- Default path:
- /etc/dracoon/webdav.properties
- Java property for overwriting the default path:
- dracoon.webdav.config.file:
- Start JAR with Java Opt -Ddracoon.webdav.config.file="/path/to/config/file
- dracoon.webdav.config.file:
File
webdav.properties
## WebDAV settings
###############################################################################################################
! Default DRACOON api
dracoon.webdav.defaultapi=https://dracoon.team
! The target DRACOON will always be the above defined (instead of the client delivered target DRACOON)
dracoon.webdav.usealwaysdefaultapi=false
! Protocol switch for connection to API [http,https].
dracoon.webdav.clientProtocol=https
! Context should look like "/webdav" (starting "/" and no ending "/")
dracoon.webdav.context=/webdav
! Port to listen on
dracoon.webdav.port=8090
! Logoutput folder. Should not end with "/" or "\"
dracoon.webdav.log4j.logoutput=/var/log/sdswebdav
! Allowed logging levels are: DEBUG (most logging) - INFO - WARN - ERROR (fewest logging)
dracoon.webdav.log4j.loglevel=INFO
! Default cachesize is 2621440 (2,5 MB) for uploading / downloading
dracoon.webdav.cachesize=2621440
dracoon-webdav.service
[Unit]
Description=DRACOON WebDAV Proxy
After=network-online.target
[Service]
Type=simple
WorkingDirectory=/usr/share/dracoonwebdav
ExecStart=/usr/bin/java -server -jar DRACOONWebdavProxy.jar
User=dracoonwebdav
[Install]
WantedBy=multi-user.target
Comments
0 comments
Article is closed for comments.