packages/net/etesync-server/files/uci.cfg
Peter Stadler edb201b9d4 etesync-server: use relative path for static_url
Django 3.1 supports relative paths for static_url.
Use it to make it more flexible.
Minor fixes for upgrade:
* ignore-fail-on-non-empty for rmdir /usr/share/etesync-server/etesync_server
* do not stop service (it is stopped already and init file is removed)

Signed-off-by: Peter Stadler <peter.stadler@student.uibk.ac.at>
2020-10-17 21:29:44 +02:00

13 lines
307 B
INI

config django 'global'
option static_url 'static/'
option debug 'false'
config django 'allowed_hosts'
list uci_allow_all_ips_of 'loopback'
list uci_allow_all_ips_of 'lan'
# list allowed_host "example.com"
config django 'database'
option engine 'django.db.backends.sqlite3'
option name 'db.sqlite3'