aboutsummaryrefslogtreecommitdiffstats
path: root/webroot/.htaccess
diff options
context:
space:
mode:
authorArne Georg Gleditsch <argggh@lxr.linpro.no>2008-02-07 20:31:11 +0100
committerArne Georg Gleditsch <argggh@lxr.linpro.no>2008-02-07 20:31:11 +0100
commit378a912bf79e1e5b6384b02b14919371ac0c4785 (patch)
treea7969b83c550188e093ac7e5b4aa5a6542908fd5 /webroot/.htaccess
parentf5277f0a49bfb6eb48c27de4d644b2f9e2f94e4f (diff)
Provisions for mod_perl use, take one.
Diffstat (limited to 'webroot/.htaccess')
-rw-r--r--webroot/.htaccess20
1 files changed, 20 insertions, 0 deletions
diff --git a/webroot/.htaccess b/webroot/.htaccess
new file mode 100644
index 0000000..2c850e5
--- /dev/null
+++ b/webroot/.htaccess
@@ -0,0 +1,20 @@
+Options ExecCGI
+
+
+<IfModule mod_perl.c>
+ PerlModule LXRng::ModPerl;
+
+ <Files *>
+ SetHandler perl-script
+ PerlResponseHandler LXRng::ModPerl
+ </Files>
+</IfModule>
+
+
+<Files robots.txt>
+ SetHandler send-as-is
+</Files>
+
+<Files favicon.ico>
+ SetHandler send-as-is
+</Files>