apache-config.conf 342 B

12345678910111213141516
  1. <VirtualHost *:80>
  2. #ServerAdmin example@kit.edu
  3. DocumentRoot /var/www/html
  4. <Directory /var/www/html/>
  5. Options -Indexes +FollowSymLinks +MultiViews
  6. DirectoryIndex index.php
  7. AllowOverride All
  8. Order deny,allow
  9. Allow from all
  10. </Directory>
  11. #ErrorLog /dev/stderr
  12. #TransferLog /dev/stdout
  13. </VirtualHost>