Mercurial > hg > rlgwebd
annotate rlgwebd.conf @ 213:08665c56c6a0 default tip
Fix race condition related to watching DGL games.
It's possible for a dgamelaunch game to end and cause rlgwebd to stop watching
it before rlgwebd has started watching it.
author | John "Elwin" Edwards |
---|---|
date | Sun, 16 Aug 2020 20:56:18 -0400 |
parents | f06f2d1a5035 |
children |
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 |
208
f06f2d1a5035
Fix possibly insecure permissions on the control socket.
John "Elwin" Edwards
parents:
204
diff
changeset
|
6 #control_socket = /var/run/rlgwebd/rlgwebd.sock |
202
7f25bb89b59c
Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff
changeset
|
7 # Port number to bind |
204 | 8 #port = 8080 |
202
7f25bb89b59c
Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff
changeset
|
9 # Path to the dgamelaunch installation to chroot into |
7f25bb89b59c
Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff
changeset
|
10 # If you change this, change the Makefile too |
7f25bb89b59c
Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff
changeset
|
11 #chrootDir = /var/dgl/ |
7f25bb89b59c
Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff
changeset
|
12 # User account to drop to |
7f25bb89b59c
Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff
changeset
|
13 #username = rodney |
7f25bb89b59c
Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff
changeset
|
14 # 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
|
15 #static_root = /var/www/ |
7f25bb89b59c
Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff
changeset
|
16 |
7f25bb89b59c
Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff
changeset
|
17 # Domain name |
7f25bb89b59c
Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff
changeset
|
18 domain_name = rlgallery.org |
7f25bb89b59c
Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff
changeset
|
19 # SSL key and certs |
7f25bb89b59c
Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff
changeset
|
20 keyfile = /etc/letsencrypt/live/rlgallery.org/privkey.pem |
7f25bb89b59c
Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff
changeset
|
21 certfile = /etc/letsencrypt/live/rlgallery.org/cert.pem |
7f25bb89b59c
Move RLGWebD configuration options into a configuration file.
John "Elwin" Edwards
parents:
diff
changeset
|
22 cafile = /etc/letsencrypt/live/rlgallery.org/chain.pem |