mirror of
https://github.com/snoyberg/keter.git
synced 2024-12-13 19:28:17 +03:00
31 lines
831 B
YAML
31 lines
831 B
YAML
# Sample Keter config file. Would generally be placed at /opt/keter/etc/keter-config.yaml.
|
|
|
|
# Directory containing incoming folder, where to store logs, etc. Relative to
|
|
# the config file directory.
|
|
root: ..
|
|
|
|
# Keter can listen on multiple ports for incoming connections. These ports can
|
|
# have HTTPS either enabled or disabled.
|
|
listeners:
|
|
# HTTP
|
|
- host: "*4" # Listen on all IPv4 hosts
|
|
#port: 80 # Could be used to modify port
|
|
# HTTPS
|
|
- host: "*4"
|
|
#port: 443
|
|
key: key.pem
|
|
certificate: certificate.pem
|
|
|
|
# User to run applications as
|
|
|
|
# setuid: ubuntu
|
|
|
|
# Get the user's IP address from x-forwarded-for. Useful when sitting behind a
|
|
# load balancer like Amazon ELB.
|
|
|
|
# ip-from-header: true
|
|
|
|
# Control the port numbers assigned via APPROOT
|
|
# external-http-port: 8080
|
|
# external-https-port: 450
|