From 13add26fdd262a2153cffd44e3851c093b0b8c7f Mon Sep 17 00:00:00 2001 From: Philipp Spitzer Date: Wed, 5 Mar 2014 22:36:36 +0100 Subject: [PATCH] Added documentation --- doc/apache2.txt | 17 +++++++++++++++++ doc/bind.txt | 4 ++++ 2 files changed, 21 insertions(+) create mode 100644 doc/apache2.txt create mode 100644 doc/bind.txt diff --git a/doc/apache2.txt b/doc/apache2.txt new file mode 100644 index 0000000..b4458be --- /dev/null +++ b/doc/apache2.txt @@ -0,0 +1,17 @@ +# Add a virtual host similar than that: +# (e.g. in /etc/apache2/sites-available/example.com.conf) + + + SSLEngine Off + ServerName dyndns.example.com + ServerAdmin webmaster@example.com + DocumentRoot /var/www/dyndns + DirectoryIndex dyndns.py + ErrorLog /var/log/apache2/error.log + CustomLog /var/log/apache2/access.log combined + + SetHandler cgi-script + Options ExecCGI FollowSymLinks + + + diff --git a/doc/bind.txt b/doc/bind.txt new file mode 100644 index 0000000..3fd8b95 --- /dev/null +++ b/doc/bind.txt @@ -0,0 +1,4 @@ +; Add the following lines to your zone file (e.g. /etc/bind/master/example.com) +; (exchange "hostname" with you host name) +dyn IN NS hostname +dyndns IN CNAME hostname -- 2.39.5