]> arthur.barton.de Git - ngircd-web.git/commitdiff
Updated doc/ for ngIRCd release 16
authorAlexander Barton <alex@barton.de>
Sun, 2 May 2010 13:35:39 +0000 (15:35 +0200)
committerAlexander Barton <alex@barton.de>
Sun, 2 May 2010 13:35:39 +0000 (15:35 +0200)
doc/ChangeLog
doc/NEWS
doc/README
doc/SSL.txt

index 55b0c39e134e7ad81c99e9838a584f66c51dd3fb..d40a2be18cc31aec8ee54037836bbc051c3be3b5 100644 (file)
@@ -10,7 +10,9 @@
                                -- ChangeLog --
 
 
-ngIRCd Release 16
+ngIRCd Release 16 (2010-05-02)
+
+  - doc/SSL: remove line continuation marker
 
   ngIRCd 16~rc2 (2010-04-25)
   - Updated some more copyright notices, it's 2010 already :-)
index 71f9f60a55f18ac5ccdb715fe70b39d2b0c8a016..3d81baf06c71c6aa1c9f8933c1a109f56ed262ea 100644 (file)
--- a/doc/NEWS
+++ b/doc/NEWS
@@ -10,7 +10,7 @@
                                   -- NEWS --
 
 
-ngIRCd Release 16
+ngIRCd Release 16 (2010-05-02)
 
   ngIRCd 16~rc2 (2010-04-25)
   - Enhace connection statistics counters: display total number of served
index 2eff7bce0c34d5fcd726dfd4a002179f2aeaec2b..dc11a9fbd964299ccb74b349da98169425d0ac7a 100644 (file)
@@ -78,10 +78,10 @@ VI. Bugs
 If you find bugs in the ngIRCd (which might be there :-), please report
 them at the following URL:
 
-<http://ngircd.barton.de/#bugs>
+<http://ngircd.barton.de/bugtracker.php>
 
 There you can read about known bugs and limitations, too.
 
 If you have critics, patches or something else, please feel free to post a
 mail to the ngIRCd mailing list: <ngircd-ml@arthur.ath.cx> (please see
-<http://ngircd.barton.de/#ml> for details).
+<http://ngircd.barton.de/support.php#ml> for details).
index 7207f1bf6c21ce61ca488e94c8303df1557c67ed..394894a2a103e8d6ccaa74258d40c35b3890e518 100644 (file)
@@ -49,8 +49,7 @@ Creating a self-signed certificate
 OpenSSL:
 
 Creating a self-signed certificate and key:
- $ openssl req -newkey rsa:2048 -x509 -keyout server-key.pem \
-       -out server-cert.pem -days 1461
+ $ openssl req -newkey rsa:2048 -x509 -keyout server-key.pem -out server-cert.pem -days 1461
 Create DH parameters (optional):
  $ openssl dhparam -2 -out dhparams.pem 2048
 
@@ -58,8 +57,7 @@ GnuTLS:
 
 Creating a self-signed certificate and key:
  $ certtool --generate-privkey --bits 2048 --outfile server-key.pem
- $ certtool --generate-self-signed --load-privkey server-key.pem \
-        --outfile server-cert.pem
+ $ certtool --generate-self-signed --load-privkey server-key.pem --outfile server-cert.pem
 Create DH parameters (optional):
  $ certtool  --generate-dh-params --bits 2048 --outfile dhparams.pem