vhost 416 B

123456789101112131415161718192021
  1. <VirtualHost *:80>
  2. ServerAdmin spam@osteronline.de
  3. DocumentRoot /var/www/html
  4. <Directory />
  5. Options FollowSymLinks
  6. AllowOverride None
  7. </Directory>
  8. <Directory /var/www/html>
  9. Options Indexes FollowSymLinks MultiViews
  10. AllowOverride All
  11. Order allow,deny
  12. allow from all
  13. </Directory>
  14. ErrorLog /var/log/apache2/error.log
  15. LogLevel warn
  16. CustomLog /var/log/apache2/access.log combined
  17. </VirtualHost>