Skip to content
Snippets Groups Projects
Commit c542f79d authored by Vivien Wu's avatar Vivien Wu
Browse files

Remove default /var/www/html directory created by apache2

parent fc21eb98
No related branches found
No related tags found
No related merge requests found
......@@ -65,6 +65,15 @@ class shibb_idp3::apache2(
source => 'puppet:///modules/shibb_idp3/var/www/index.html',
}
# Remove default apache html directory and its index.html
file { 'delete /var/www/html':
ensure => absent,
path => '/var/www/html',
recurse => true,
force => true,
purge => true
}
# We want the "officially" signed certificate and private key for the
# Apache front end. By default, apache::cert::comodo puts the key pair
# in /etc/ssl/certs/server.pem and /etc/ssl/private/server.key which is
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment