13 lines
438 B
Plaintext
13 lines
438 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin root@localhost
|
|
DocumentRoot /var/www/html
|
|
ServerName www.<%= @ng_nagios_server %>
|
|
ServerAlias <%= @ng_nagios_server %>
|
|
Redirect permanent / https://<%= @ng_nagios_server %>/nagios
|
|
<Directory />
|
|
AllowOverride All
|
|
</Directory>
|
|
ErrorLog /var/log/httpd/<%= @ng_nagios_server %>-error_log
|
|
CustomLog /var/log/httpd/<%= @ng_nagios_server %>-access_log common
|
|
</VirtualHost>
|