forked from all-umass/superman-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-template.yml
33 lines (27 loc) · 1.13 KB
/
config-template.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
# Copy this template to config.yml, then make changes
# as needed for your local install.
# Port to serve the website on.
port: 54321
# Paths are relative to the location of superman_server.py
# File specifying the locations and contents of dataset files.
datasets: datasets.yml
# Location of the server's logfile.
# On restart, the previous logfile will be saved to a new name
# based on the timestamp: <logfile>.<timestamp>
logfile: logs/server.log
# Login password for access to private datasets and tools.
# If not provided, the server will disable login
# and won't load any private datasets.
# NOTE: change this from the default password,
# or your "private" data will not be!
password: mypassword123
# Random string for encrypting cookie data.
# If not provided, the server will generate a new secret on startup.
# NOTE: Don't specify this unless you know what you're doing!
# cookie_secret: "<some random string>"
# Allowed IP addresses for nightly refresh.
# If provided, the IP address(es) listed may request a data
# refresh without authenticating.
# NOTE: Don't specify this unless you know what you're doing!
# nightly_refresh_ips: []