annotate rlgwebd.conf @ 202:7f25bb89b59c

Move RLGWebD configuration options into a configuration file. On startup, rlgwebd now reads /etc/rlgwebd.conf. If the options for HTTPS are not found, it will only use HTTP.
author John "Elwin" Edwards
date Wed, 04 Jan 2017 20:28:29 -0500
parents
children a200b313870d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
202
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
1 # Configuration file for RLGWebD
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
2 # Install in /etc
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
3
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
4 # These values are set by default:
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
5 # Location of the socket for start/stop commands
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
6 #control_socket = /var/run/rlgwebd.sock
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
7 # Port number to bind
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
8 #http_port = 8080
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
9 # Port number for HTTPS
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
10 #https_port = 8081
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
11 # Path to the dgamelaunch installation to chroot into
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
12 # If you change this, change the Makefile too
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
13 #chrootDir = /var/dgl/
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
14 # User account to drop to
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
15 #username = rodney
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
16 # Path within the chroot where static Web files are located
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
17 #static_root = /var/www/
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
18
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
19 # Domain name
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
20 domain_name = rlgallery.org
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
21 # SSL key and certs
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
22 keyfile = /etc/letsencrypt/live/rlgallery.org/privkey.pem
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
23 certfile = /etc/letsencrypt/live/rlgallery.org/cert.pem
7f25bb89b59c Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff changeset
24 cafile = /etc/letsencrypt/live/rlgallery.org/chain.pem