2022-04-08 21:00:17 +02:00
|
|
|
# Sellery configuration file
|
|
|
|
|
2022-04-08 22:24:41 +02:00
|
|
|
# Serve files from this directory (Path must be absolute)
|
|
|
|
# Use $WORKING_DIR to subsitute the current working directory
|
|
|
|
# So, if you want to server relative paths, use:
|
|
|
|
# $WORKING_DIR/relative/path
|
|
|
|
# Paths should NOT end with a '/'!
|
|
|
|
WEBROOT = '$WORKING_DIR'
|
|
|
|
|
2022-04-08 21:00:17 +02:00
|
|
|
# This is the SHA512 digest to check the password against
|
|
|
|
PASSWD_HASH = 'a3c1443b087cf5338d3696f6029fdf791ee4829a27e19c9f257a06ca0d88b5b518ac9868bb13199e807553bda62d3dc15b6354862f34fcab0a7c4c45530349ea'
|
|
|
|
|
|
|
|
# Sessions stay valid this many seconds, if inactive. Default: 600 (=10 minutes)
|
|
|
|
SESSION_DURATION = 600
|
|
|
|
|
2022-04-08 21:41:43 +02:00
|
|
|
# The port the webserver runs on
|
|
|
|
WEBSERVER_PORT = 443
|
|
|
|
|
2022-04-08 22:24:41 +02:00
|
|
|
# SSL key and certificate (you have to generate these yourself!)
|
|
|
|
SSL_KEY_FILE = 'key.pem'
|
|
|
|
SSL_CERT_FILE = 'cert.pem'
|
2022-04-08 21:41:43 +02:00
|
|
|
|