xo-server/config/local.yaml.dist

62 lines
1.5 KiB
Plaintext
Raw Normal View History

2013-10-21 16:52:44 +02:00
# Configuration of XO-Server's HTTP server.
2013-09-03 13:28:34 +02:00
http:
2013-10-21 16:52:44 +02:00
# Is HTTP enabled?
#
# Default: true
#enabled: false
2013-09-03 13:28:34 +02:00
# Address on which the server is listening on.
#
2013-09-30 15:36:05 +02:00
# Sets it to '127.0.0.1' to listen only on the local host.
2013-09-03 13:28:34 +02:00
#
2013-09-30 15:36:05 +02:00
# Default: 0.0.0.0 (all addresses)
#host: '127.0.0.1'
2013-09-03 13:28:34 +02:00
# Port on which the server is listening on.
#
# Default: 80
#port: 8080
2013-09-03 13:28:34 +02:00
2013-10-21 16:52:44 +02:00
# Configuration of XO-Server's HTTPS server.
2013-10-21 17:20:02 +02:00
#
# A certificate is required, see http://www.selfsignedcertificate.com/
# or https://devcenter.heroku.com/articles/ssl-certificate-self to
# easily create a (unsecure) self-signed certificate.
2013-10-21 16:52:44 +02:00
https:
# Is HTTPS enabled?
#
# Default: false
#enabled: true
# Address on which the server is listening on.
#
# Sets it to '127.0.0.1' to listen only on the local host.
#
# Default: 0.0.0.0 (all addresses)
#host: '127.0.0.1'
# Port on which the server is listening on.
#
# Default: 443
#port: 8081
# File containing the certificate (PEM format).
2013-10-21 17:20:02 +02:00
#
# Default: './certificate.pem'
#certificate: '/path/to/the/certificate.pem'
2013-10-21 16:52:44 +02:00
# File containing the private key (PEM format).
#
# If the key is encrypted, the passphrase will be asked at server
# startup.
2013-10-21 17:20:02 +02:00
#
# Default: './key.pem'
#key: '/path/to/the/key.pem'
2013-10-21 16:52:44 +02:00
# Configuration of the Redis server.
redis:
# Syntax: tcp://[db[:password]@]hostname[:port]
#
# Default: tcp://localhost:6379
#uri: ''