11 lines
316 B
Plaintext
11 lines
316 B
Plaintext
|
<VirtualHost *:80>
|
||
|
ServerAdmin lukewarmcat@riseup.net
|
||
|
ServerName lukewarmcat.codes
|
||
|
DocumentRoot /home/lukewarmcat/public_html
|
||
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
||
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
||
|
<Directorymatch "^/.*/\.git/">
|
||
|
Order deny,allow
|
||
|
Deny from all
|
||
|
</Directorymatch>
|
||
|
</VirtualHost>
|