123456789101112131415161718192021 |
- database:
- # Code likely not to work on another engine because it adds ?parseTime=true
- driver: mysql
- dsn: <user>:<pass>@[<server>]/<database>
- test_dsn: <user>:<pass>@[<server>]/<database>
- web:
- # May be absolute or relative to the current directory.
- assetsPath: web/ui/public
- # The initial version cache buster on Kurz start. Will probably not remain in config.
- assetsVersion: 1
- listenAddress: ":8000"
- # Delay is in seconds
- refreshDelay: 5
- # Each instance should have its own session key
- sessionKey: this_is_a_bad_key_change_it
- sessionName: KURZSESSID
- # Used to build absolute URLs.
- siteBaseURL: &sbu http://localhost:8000
- siteName: "Kurz"
- # Config line needs to be below siteBaseURL for the YAML reference to work.
- assetsBaseURL: *sbu
|