Eintrag "standardmäßig"

beage

New Member
Hallo liebe Forengemeinde,

ich habe eine Frage zu den http-specials.

Wenn ich einen neuen Kunden anlege, dann legt Confixx in der entsprechenden vhosts.conf als erstes diesen Schnipsel an:

Code:
<Directory "/var/www/web25/html">
  Options -FollowSymLinks -SymLinksIfOwnerMatch
  <IfModule mod_access.c>
    Allow from all
  </IfModule>
  <IfModule mod_authz_host.c>
    Allow from all
  </IfModule>
  php_admin_flag engine on
  <Files ~ "\.shtml$">
    deny from all
  </Files>
</Directory>

Wo holt Confixx das her? Ich möchte, das AllowOverride All standardmäßig dort mit reinkommt, also:

Code:
<Directory "/var/www/web25/html">
  Options -FollowSymLinks -SymLinksIfOwnerMatch
  AllowOverride All

....

</Directory>

Danke und viele Grüße
Bernd
 
Back
Top