16 lines
350 B
Plaintext
16 lines
350 B
Plaintext
<VirtualHost *:1024>
|
|
ServerAdmin me@mydomain.com
|
|
DocumentRoot /var/www/site
|
|
|
|
<Directory /var/www/site/>
|
|
Options -Indexes +FollowSymLinks +MultiViews
|
|
AllowOverride All
|
|
Order deny,allow
|
|
Allow from all
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
|
|
</VirtualHost>
|