summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/init.pp4
-rw-r--r--templates/apache2.conf.erb2
2 files changed, 5 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 8505d7c..f9c3a81 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -92,6 +92,10 @@ class apache {
'': { $apache_error_dest = "${apache_error_folder}/index.html" }
}
+ case $apache_server_name {
+ '': { $apache_server_name = $fqdn }
+ }
+
define site($ensure = present, $docroot = false, $redirect = false,
$redirect_match = false, $protocol = 'http',
$server_alias = false, $use = false, $ticket = false,
diff --git a/templates/apache2.conf.erb b/templates/apache2.conf.erb
index 9ff6ea5..cc59c6d 100644
--- a/templates/apache2.conf.erb
+++ b/templates/apache2.conf.erb
@@ -35,7 +35,7 @@
# such as the number of concurrent requests it can handle or where it
# can find its configuration files.
#
-ServerName <%= fqdn %>
+ServerName <%= apache_server_name %>
#
# ServerRoot: The top of the directory tree under which the server's