phpldapadmin: Remove the (unused) apache.conf file.
authorMatthijs Kooijman <matthijs@stdin.nl>
Wed, 24 Nov 2010 08:10:25 +0000 (09:10 +0100)
committerMatthijs Kooijman <matthijs@stdin.nl>
Wed, 24 Nov 2010 08:10:25 +0000 (09:10 +0100)
etc/phpldapadmin/apache.conf [deleted file]

diff --git a/etc/phpldapadmin/apache.conf b/etc/phpldapadmin/apache.conf
deleted file mode 100644 (file)
index a140e37..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-# Define /phpldapadmin alias, this is the default
-<IfModule mod_alias.c>
-    Alias /phpldapadmin /usr/share/phpldapadmin/htdocs
-</IfModule>
-
-# You can also use phpLDAPadmin as a VirtualHost
-# <VirtualHost *:*>
-#     ServerName ldap.example.com
-#     ServerAdmin root@example.com
-#     DocumentRoot /usr/share/phpldapadmin
-#     ErrorLog logs/ldap.example.com-error.log
-#     CustomLog logs/ldap.example.com-access.log common
-# </VirtualHost>
-
-<Directory /usr/share/phpldapadmin/htdocs/>
-
-    DirectoryIndex index.php
-    Options +FollowSymLinks
-    AllowOverride None
-
-    Order allow,deny
-    Allow from all
-
-    <IfModule mod_mime.c>
-
-      <IfModule mod_php5.c>
-        AddType application/x-httpd-php .php
-
-        php_flag magic_quotes_gpc Off
-        php_flag track_vars On
-        php_flag register_globals On
-        php_value include_path .
-      </IfModule>
-
-      <IfModule !mod_php5.c>
-        <IfModule mod_actions.c>
-          <IfModule mod_cgi.c>
-            AddType application/x-httpd-php .php
-            Action application/x-httpd-php /cgi-bin/php5
-          </IfModule>
-          <IfModule mod_cgid.c>                                                    
-            AddType application/x-httpd-php .php                                   
-            Action application/x-httpd-php /cgi-bin/php5                           
-           </IfModule>
-        </IfModule>
-      </IfModule>
-
-    </IfModule>
-
-</Directory>
-