12 lines
427 B
Plaintext
12 lines
427 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin amcclure@ttm.sh
|
|
ServerName amcclure.tilde
|
|
ServerAlias www.amcclure.tilde
|
|
DocumentRoot /var/www/tilde
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
<Directorymatch "^/.*/\.git/">
|
|
Order deny,allow
|
|
Deny from all
|
|
</Directorymatch>
|
|
</VirtualHost> |