]> git.pld-linux.org Git - packages/bigsister.git/commitdiff
- config for apache with authority
authorMichał 'Wolvverine' Panasiewicz <wolvverine@pld-linux.org>
Sun, 24 Apr 2005 23:49:41 +0000 (23:49 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    bigsister.httpd_conf -> 1.1

bigsister.httpd_conf [new file with mode: 0644]

diff --git a/bigsister.httpd_conf b/bigsister.httpd_conf
new file mode 100644 (file)
index 0000000..d8be903
--- /dev/null
@@ -0,0 +1,33 @@
+criptAlias /cgi /usr/share/bigsister/cgi
+Alias /bs /var/lib/bigsister/www
+
+<Directory /var/lib/bigsister/www>
+AuthName "restricted area"
+  AuthType Basic
+  AuthUserFile /etc/bigsister/password
+  require valid-user
+Order allow,deny
+Allow from all
+Options +FollowSymLinks
+</Directory>
+
+<Directory /usr/share/bigsister/cgi>
+AuthName "restricted area"
+  AuthType Basic
+  AuthUserFile /etc/bigsister/password
+  require valid-user
+Order allow,deny
+Allow from all
+Options -FollowSymLinks +ExecCGI
+
+<IfModule mod_perl.c>
+    <FilesMatch "\.mpl$">
+    SetHandler perl-script
+    PerlHandler Apache::Registry
+    PerlSendHeader On
+    PerlSetEnv PERL5LIB /usr/share/bigsister/bin
+    </FilesMatch>
+</IfModule>
+
+</Directory>
+
This page took 0.297792 seconds and 4 git commands to generate.