16 lines
459 B
Plaintext
16 lines
459 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin webmaster@exemple.com
|
|
ServerName exemple.com
|
|
ServerAlias www.exemple.com
|
|
|
|
DocumentRoot /var/www/exemple.com/public_html
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/exemple.com_error.log
|
|
CustomLog ${APACHE_LOG_DIR}/exemple.com_access.log combined
|
|
|
|
<Directory /var/www/exemple.com/public_html>
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost> |