From 34fa2dcb582ce9907f79da260737ec2847298877 Mon Sep 17 00:00:00 2001 From: dakkar Date: Tue, 5 Apr 2011 20:24:56 +0100 Subject: apache conf --- confs/apache | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 confs/apache diff --git a/confs/apache b/confs/apache new file mode 100644 index 0000000..956fd31 --- /dev/null +++ b/confs/apache @@ -0,0 +1,36 @@ + + DocumentRoot "/usr/local/shorten/htdocs" + + + AllowOverride None + Order allow,deny + Allow from all + + + RewriteEngine On + + RewriteCond %{HTTPS} off + RewriteRule ^/add$ https://xn--yet.cc/add [R=301,L] + + RewriteCond %{HTTPS} off + RewriteRule ^/$ https://xn--yet.cc/ [R=301,L] + + RewriteCond %{HTTPS} on + RewriteRule ^/add$ /usr/local/shorten/cgi/shorten.pl/add [H=cgi-script,L] + + RewriteCond %{HTTPS} on + RewriteRule ^/$ /usr/local/shorten/htdocs/form.html [L] + + RewriteRule ^/(.*)$ /usr/local/shorten/cgi/shorten.pl/$1 [H=cgi-script,L] + + + + # this must match a Processor + ServerEnvironment apache apache + + # these are optional - defaults to the values specified in httpd.conf + MinSpareProcessors 4 + MaxProcessors 20 + + + -- cgit v1.2.3