when i create a directory then i can see inside it without any index file why ispconfig doesn't disable it by default?
The default is from the Linux distribution that you use and not ISPConfig. You should ask the Linux maintainer for apache why they enable it. If we override the system wide setting, then the next user complains why he is not able to configure this setting on his server systemwide anymore.
yes you're right Now how can i disable it by default my os is Linux ubutu 16.0.4 server 64bit i shoould change ispconfig template?
Solved edit /etc/apache2/apache2.conf and change this: Code: <Directory /var/www/> # Options Indexes FollowSymLinks Options All FollowSymLinks MultiViews -Indexes AllowOverride None Require all granted </Directory>
In Debian 8 you can uncomment the section in /etc/apache2/conf-available/security.conf, and the commends indicate why it is not the default: Ubuntu may well have that same file/block, or you can just create your own (and run "a2enconf security" if you are creating the file).
it put this code: Code: <Directory /> AllowOverride All Order Deny,Allow Allow from all Options All -Indexes </Directory> It doesn't work