You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# random secret key, use for example `base64 /dev/urandom | head -c50` to generate one
23
-
SECRET_KEY=
24
-
25
-
# allowed hosts (see documentation), should be set to your hostname(s) but might be * (default) for some proxies/providers
26
-
ALLOWED_HOSTS=tandoor.yourtailnet.ts.net
27
-
28
-
# To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
18
+
# Time Zone setting for containers
29
19
TZ=Europe/Amsterdam
30
20
31
-
# Connection secret for postgres. You should change it to a random password
32
-
# Please use only the characters `A-Za-z0-9`, without special characters or spaces
33
-
DB_PASSWORD=postgres
21
+
# Tandoor Configuration
22
+
# Generate with: base64 /dev/urandom | head -c50
23
+
# Do not commit a real production secret to Git.
24
+
SECRET_KEY=REPLACE_WITH_RANDOM_SECRET
25
+
26
+
# Allowed hosts should match your Tailscale Serve hostname.
27
+
ALLOWED_HOSTS=tandoor.example.ts.net
34
28
35
-
# The values below this line do not need to be changed
0 commit comments