You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.1 KiB

3 years ago
  1. # The address and port sncf will listen
  2. listening_address = "0.0.0.0"
  3. listening_port = 8000
  4. # Public-facing domain for sncf.
  5. # includes protocol, FQDN and port, without the trailing slash.
  6. sncf_url = "http://example.org"
  7. # SQLite: path to the SQLite DB
  8. # PostgreSQL: postgres://user:password@address:port/database
  9. # MySQL: mysql://user:password@address:port/database
  10. database_path = "mysql://nextcloud:AAAAAAAAAAAAAAAAAAAAAAAAAAAAMYSQL@nextcloud-db:3306/nextcloud"
  11. # IP address of the Nextcloud instance, including protocol and port
  12. nextcloud_url = "http://nextcloud-web:80"
  13. # Nextcloud admin account credentials
  14. # TODO hash adminpw
  15. admin_username = "AAAAAAAAAAAusername"
  16. admin_password = "AAAAAAAAAadminpw"
  17. # How many days of inactivity for an admin token before deleting NC accounts
  18. prune_days = 40
  19. # Displays route names and a lot of information
  20. debug_mode = true
  21. # Used to encrypt csrf tokens and csrf cookies.
  22. # Generate random bytes: openssl rand -base64 32
  23. # Then paste the result in this variable
  24. cookie_key = "Af3v5KMNPmwYYBRRjm/W5ds1rHDdyCEvpxVTMLKEKl0="
  25. # Don't touch this unless you know what you're doing
  26. config_version = 2