apache-config.conf 424 B

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