We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01f8fd4 commit 880e970Copy full SHA for 880e970
Graphs/settings.py
@@ -23,6 +23,9 @@
23
24
ALLOWED_HOSTS = os.getenv('ALLOWED_HOSTS').split(',') if os.getenv('ALLOWED_HOSTS') else []
25
26
+SESSION_EXPIRE_AT_BROWSER_CLOSE = False
27
+SESSION_COOKIE_AGE = 365 * 60 * 24 * 60
28
+
29
LOGIN_REDIRECT_URL = "index"
30
LOGOUT_REDIRECT_URL = "index"
31
docker-compose.yml.template
@@ -7,8 +7,6 @@ services:
7
- ./postgresql:/var/lib/postgresql/data
8
env_file:
9
- ./.env
10
- networks:
11
- - default
12
13
web_graphs:
14
privileged: true
@@ -22,8 +20,6 @@ services:
22
20
- /sys:/sys
21
depends_on:
- db_graphs
nginx_graphs:
image: "nginx"
0 commit comments