blob: 8cab5607e9e01af5c961e3347d8c394fd04617e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
--- a/etebase-server.ini 2022-05-09 16:40:04.530320735 +0200
+++ b/etebase-server.ini 2022-05-09 16:50:09.369001300 +0200
@@ -1,9 +1,9 @@
[global]
-secret_file = secret.txt
+secret_file = /var/lib/etebase-server/secret.txt
debug = false
;Set the paths where data will be stored at
-static_root = /path/to/static
-media_root = /path/to/media
+static_root = /usr/share/webapps/etebase-server/static
+media_root = /var/lib/etebase-server/media
;Advanced options, only uncomment if you know what you're doing:
;static_url = /static/
@@ -17,7 +17,7 @@
[database]
engine = django.db.backends.sqlite3
-name = db.sqlite3
+name = /var/lib/etebase-server/db.sqlite3
[database-options]
; Add engine-specific options here, such as postgresql parameter key words
|