diff options
| author | Alexander Barton <alex@barton.de> | 2010-11-03 23:47:21 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2010-11-03 23:47:21 +0100 |
| commit | 30b6e72b96e8092f3a0884b1a02eb403b8a4b12c (patch) | |
| tree | 3bef0596f6421a9942595bd5caa584a6f5d76db8 /doc/sample-ngircd.conf.tmpl | |
| parent | 4a197638688d4e39d57f201ac735a38c9fc5a260 (diff) | |
| download | ngircd-30b6e72b96e8092f3a0884b1a02eb403b8a4b12c.tar.gz ngircd-30b6e72b96e8092f3a0884b1a02eb403b8a4b12c.zip | |
Fix up generation and distribution of sample-ngircd.conf
- Add generated sample-ngircd.conf to new .gitignore file, - refactor Makefile.am to generate sample-ngircd.conf on "make all", to clean it up on "make clean", and to install it to the correct place. - Make sure path names in sample-ngircd.conf are separated by "/".
Diffstat (limited to 'doc/sample-ngircd.conf.tmpl')
| -rw-r--r-- | doc/sample-ngircd.conf.tmpl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/sample-ngircd.conf.tmpl b/doc/sample-ngircd.conf.tmpl index c6dde60d..12b688d2 100644 --- a/doc/sample-ngircd.conf.tmpl +++ b/doc/sample-ngircd.conf.tmpl @@ -51,16 +51,16 @@ ;SSLPorts = 6697, 9999 # SSL Server Key - ;SSLKeyFile = :ETCDIR:ssl/server-key.pem + ;SSLKeyFile = :ETCDIR:/ssl/server-key.pem # password to decrypt SSLKeyFile (OpenSSL only) ;SSLKeyFilePassword = secret # SSL Server Key Certificate - ;SSLCertFile = :ETCDIR:ssl/server-cert.pem + ;SSLCertFile = :ETCDIR:/ssl/server-cert.pem # Diffie-Hellman parameters - ;SSLDHFile = :ETCDIR:ssl/dhparams.pem + ;SSLDHFile = :ETCDIR:/ssl/dhparams.pem # comma separated list of IP addresses on which the server should # listen. Default values are: @@ -77,7 +77,7 @@ # Text file with the "message of the day" (MOTD). This message will # be shown to all users connecting to the server: - ;MotdFile = :ETCDIR:ngircd.motd + ;MotdFile = :ETCDIR:/ngircd.motd # A simple Phrase (<256 chars) if you don't want to use a motd file. ;MotdPhrase = "Hello world!" @@ -270,7 +270,7 @@ # Key file, syntax for each line: "<user>:<nick>:<key>". # Default: none. - ;KeyFile = :ETCDIR:#chan.key + ;KeyFile = :ETCDIR:/#chan.key # maximum users per channel (mode l) ;MaxUsers = 23 |