10 lines
252 B
Plaintext
10 lines
252 B
Plaintext
<VirtualHost *:80>
|
|
ServerName localhost
|
|
# Set the document root
|
|
DocumentRoot "/var/www/html"
|
|
<Directory "/var/www/html">
|
|
# Allow overriding the default configuration via `.htaccess`
|
|
AllowOverride All
|
|
</Directory>
|
|
</VirtualHost>
|