default.site.conf 381 B

1234567891011121314
  1. <VirtualHost *:80>
  2. ServerName __SITE__
  3. DocumentRoot /var/www/__SITE__
  4. <Directory /var/www/__SITE__>
  5. Options +ExecCGI +Indexes +FollowSymLinks +MultiViews
  6. AllowOverride All
  7. RewriteEngine On
  8. Order allow,deny
  9. allow from all
  10. </Directory>
  11. ErrorLog ${APACHE_LOG_DIR}/error.log
  12. CustomLog ${APACHE_LOG_DIR}/access.log combined
  13. ServerAdmin [email protected]
  14. </VirtualHost>