]> git.pld-linux.org Git - packages/drupal.git/blob - drupal.conf
- include_path unneccessary
[packages/drupal.git] / drupal.conf
1 #
2 # Apache/PHP/Drupal settings.
3
4 # Default setup is for running drupal in vhost.
5 # You can setup drupal as alias /drupal, but you need to comment/uncomment few things.
6 #
7 # Please note that drupal-ID's don't work in subdirs, you need vhost for that.
8
9 <Directory /usr/share/drupal/htdocs>
10     Options FollowSymLinks
11     AllowOverride None
12     <IfModule mod_access.c>
13         order allow,deny
14         allow from all
15     </IfModule>
16
17     # Set the default handler.
18     <IfModule mod_dir.c>
19         DirectoryIndex index.php
20     </IfModule>
21
22     # Override PHP settings. More exist in sites/default/settings.php, but
23     # the following cannot be changed at runtime. The first IfModule is
24     # for Apache 1.3, the second for Apache 2.
25     <IfModule mod_php4.c>
26         php_value magic_quotes_gpc                0
27         php_value register_globals                0
28         php_value session.auto_start              0
29     </IfModule>
30
31     <IfModule sapi_apache2.c>
32         php_value magic_quotes_gpc                0
33         php_value register_globals                0
34         php_value session.auto_start              0
35     </IfModule>
36
37     # Reduce the time dynamically generated pages are cache-able.
38     <IfModule mod_expires.c>
39         ExpiresByType text/html A1
40     </IfModule>
41
42     # Various rewrite rules.
43     <IfModule mod_rewrite.c>
44         RewriteEngine on
45
46         # Modify the RewriteBase if you are using Drupal in a subdirectory and
47         # the rewrite rules are not working properly.
48         # Enable RewriteBase if you have drupal configured in virtualhost root.
49         #RewriteBase /drupal
50
51         # Rewrite old-style URLs of the form 'node.php?id=x'.
52         #RewriteCond %{REQUEST_FILENAME} !-f
53         #RewriteCond %{REQUEST_FILENAME} !-d
54         #RewriteCond %{QUERY_STRING} ^id=([^&]+)$
55         #RewriteRule node.php index.php?q=node/view/%1 [L]
56
57         # Rewrite old-style URLs of the form 'module.php?mod=x'.
58         #RewriteCond %{REQUEST_FILENAME} !-f
59         #RewriteCond %{REQUEST_FILENAME} !-d
60         #RewriteCond %{QUERY_STRING} ^mod=([^&]+)$
61         #RewriteRule module.php index.php?q=%1 [L]
62
63         # Rewrite current-style URLs of the form 'index.php?q=x'.
64         RewriteCond %{REQUEST_FILENAME} !-f
65         RewriteCond %{REQUEST_FILENAME} !-d
66         RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
67     </IfModule>
68
69     # Customized error messages.
70     ErrorDocument 404 /index.php
71 </Directory>
72
73 # If having drupal installed as /drupal
74 #<IfModule mod_alias.c>
75 #    Alias /drupal/files /var/lib/drupal
76 #    Alias /drupal /usr/share/drupal/htdocs
77 #</IfModule>
78 #
79 #<Location /drupal>
80 #    # Customized error messages.
81 #    ErrorDocument 404 /drupal/index.php
82 #</Location>
83
84 <VirtualHost *:80>
85     ServerName drupal
86     ServerAlias www.drupal
87     DocumentRoot /usr/share/drupal/htdocs
88
89     <IfModule mod_alias.c>
90         Alias /files /var/lib/drupal
91     </IfModule>
92 </VirtualHost>
93
94 # vim: filetype=apache ts=4 sw=4 et
This page took 0.083077 seconds and 3 git commands to generate.