From 5ab6999d393cbdf65cd5fd3ab40e02c33849f9c4 Mon Sep 17 00:00:00 2001 From: Joe Rayhawk Date: Mon, 24 Sep 2018 22:44:29 -0700 Subject: pinyconfig: Modernizing configuration files. --- pinyconfigs/etc/apache2/sites-available/piny.conf | 81 +++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 pinyconfigs/etc/apache2/sites-available/piny.conf (limited to 'pinyconfigs/etc/apache2/sites-available/piny.conf') diff --git a/pinyconfigs/etc/apache2/sites-available/piny.conf b/pinyconfigs/etc/apache2/sites-available/piny.conf new file mode 100644 index 0000000..6702a3d --- /dev/null +++ b/pinyconfigs/etc/apache2/sites-available/piny.conf @@ -0,0 +1,81 @@ + + ServerName piny.be + + DocumentRoot /srv/http/piny.be + + + Options Indexes FollowSymLinks MultiViews + AllowOverride None + + + Alias /js /usr/share/javascript + + RedirectMatch 301 ^/$ http://piny.be/piny-hosting/ + + Include /etc/apache2/piny/www + + + + ServerName www.piny.be + RedirectMatch 301 (.*) http://piny.be$1 + + + + ServerName piny.be + DocumentRoot /srv/https/piny.be + + + Options Indexes FollowSymLinks MultiViews + AllowOverride None + + + Alias /js /usr/share/javascript + + RedirectMatch 301 ^/$ http://piny.be/piny-hosting/ + + SSLEngine On + + Include /etc/apache2/piny/www + + + + ServerName secure.piny.be + RedirectMatch 301 (.*) https://secure.piny.be$1 + + + + ServerName secure.piny.be + DocumentRoot /srv/https/secure.piny.be + RedirectMatch 301 ^/$ http://piny.be/ + + + SSLRequireSSL + Options Indexes FollowSymLinks MultiViews + AllowOverride None + + + + SetHandler cgi-script + Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch + + + + AuthBasicProvider PAM + AuthPAMService other + AuthBasicAuthoritative off + AuthType Basic + AuthName "User account for piny.be needed." + Require valid-user + + + Alias /_cgit /usr/share/cgit + + ScriptAlias /cgit /usr/lib/cgi-bin/cgit.cgi + ScriptAlias /piny-newuser /usr/lib/cgi-bin/piny/newuser.cgi + ScriptAlias /piny-validate /usr/lib/cgi-bin/piny/checkconstraint.cgi + ScriptAlias /auth /usr/lib/cgi-bin/piny/auth + + SSLEngine On + + Include /etc/apache2/piny/secure + -- cgit v1.2.3