1
0
Fork 0
mirror of https://git.42l.fr/neil/sncf.git synced 2024-04-26 19:40:30 +02:00

adding cookie_key field in config.toml

This commit is contained in:
neil 2020-11-03 19:03:57 +01:00
parent d4c1979e79
commit 6bfd488036

View file

@ -14,7 +14,7 @@ database_path = ""
# IP address of the Nextcloud instance, including protocol and port
nextcloud_url = "http://10.0.0.0"
# Nextcloud admin account
# Nextcloud admin account credentials
admin_username = "adminusername"
admin_password = "adminverylongandsecurepassword"
@ -24,5 +24,10 @@ prune_days = 150
# Displays route names and a lot of information
debug_mode = true
# Used to encrypt csrf tokens and csrf cookies.
# Generate random bytes: openssl rand -base64 48
# Then paste the result in this variable
cookie_key = ""
# Don't touch this unless you know what you're doing
config_version = 1
config_version = 2