You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
623 B
13 lines
623 B
<VirtualHost SITE_IP:SITE_PORT> |
|
ServerName SITE_NAME |
|
ServerAdmin bofh@tetalab.org |
|
DocumentRoot /var/www/SITE_NAME |
|
RemoteIPHeader X-Forwarded-For |
|
RemoteIPInternalProxy 192.168.122.0/24 |
|
<Directory /var/www/SITE_NAME> |
|
AllowOverride All |
|
Require all granted |
|
</Directory> |
|
ErrorLog /var/log/httpd/SITE_NAME.error.log |
|
CustomLog /var/log/httpd/SITE_NAME.access.log combined |
|
</VirtualHost>
|
|
|