aboutsummaryrefslogtreecommitdiff
path: root/example-server.conf
diff options
context:
space:
mode:
Diffstat (limited to 'example-server.conf')
-rw-r--r--example-server.conf3
1 files changed, 2 insertions, 1 deletions
diff --git a/example-server.conf b/example-server.conf
index b9bd094..35a53d1 100644
--- a/example-server.conf
+++ b/example-server.conf
@@ -4,6 +4,7 @@ server {
tls_key = "server.key" # Path to TLS key
tls_cert = "server.crt" # Path to TLS certificate
port = 443 # Port to listen on
+ address = "127.0.0.1" # Optional. IP address to listen on.
cookie_secret = "supersecret" # Authentication key for the client cookie
csrf_secret = "supersecret" # Authentication key for the CSRF token
http_logfile = "http.log" # Logfile for HTTP requests
@@ -19,7 +20,7 @@ auth {
provider_opts {
domain = "example.com" # Oauth-provider specific options
}
- users_whitelist = ["marco", "niall", "patrick"] # Optional
+ users_whitelist = ["marco@gmail.com", "niall@gmail.com", "patrick@gmail.com"] # Optional
}
# Configuration for the certificate signer.