sncf/config.toml.sample

34 lines
1006 B
Plaintext
Raw Permalink Normal View History

2020-08-19 01:21:42 +02:00
# The address and port sncf will listen
listening_address = "0.0.0.0"
listening_port = 8000
# Public-facing domain for sncf.
# includes protocol, FQDN and port, without the trailing slash.
sncf_url = "http://localhost:8000"
# SQLite: path to the SQLite DB
# PostgreSQL: postgres://user:password@address:port/database
# MySQL: mysql://user:password@address:port/database
database_path = ""
2020-08-19 01:21:42 +02:00
# IP address of the Nextcloud instance, including protocol and port
nextcloud_url = "http://10.0.0.0"
2020-11-03 19:03:57 +01:00
# Nextcloud admin account credentials
2020-08-19 01:21:42 +02:00
admin_username = "adminusername"
admin_password = "adminverylongandsecurepassword"
# How many days of inactivity for an admin token before deleting NC accounts
prune_days = 150
# Displays route names and a lot of information
debug_mode = true
2020-11-03 19:03:57 +01:00
# Used to encrypt csrf tokens and csrf cookies.
# Generate random bytes: openssl rand -base64 32
2020-11-03 19:03:57 +01:00
# Then paste the result in this variable
cookie_key = ""
2020-08-19 01:21:42 +02:00
# Don't touch this unless you know what you're doing
2020-11-03 19:03:57 +01:00
config_version = 2