16 lines
522 B
Plaintext
16 lines
522 B
Plaintext
<VirtualHost *:80>
|
|
ServerName example.org
|
|
ServerAlias www.example.org
|
|
DocumentRoot /var/www/html/example.org/
|
|
CustomLog /var/log/httpd/example.org_access.log combined
|
|
ErrorLog /var/log/httpd/example.org_error.log
|
|
<Directory />
|
|
Options none
|
|
Allowoverride none
|
|
Require all denied
|
|
</Directory>
|
|
|
|
<Directory /var/www/html/example.org>
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost> |