diff --git a/CHANGELOG.md b/CHANGELOG.md index d5919da..c26504f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +### 0.3.3-1 2016-06-21 + update: harden apache security (#9) by Roman Spiak + ### 0.3.3 2015-10-26 update: Permit user-determined secret.php contents (#8) by Matt Simmons diff --git a/Modulefile b/Modulefile new file mode 100644 index 0000000..8a15c1e --- /dev/null +++ b/Modulefile @@ -0,0 +1,11 @@ +name 'rspiak-racktables' +version '0.3.3-1' +source 'https://github.com/sgnl05/sgnl05-racktables' +author 'rspiak' +license 'Apache License, Version 2.0' +summary 'Module to deploy racktables' +description 'UNKNOWN' +project_page 'https://github.com/rspiak/sgnl05-racktables' + +## Add dependencies, if any: +# dependency 'username/name', '>= 1.2.0' diff --git a/README.md b/README.md index d7401d8..c7e5cef 100644 --- a/README.md +++ b/README.md @@ -306,4 +306,4 @@ Should work, but has not been tested. ###Contributing -Please use the issue tracker (https://github.com/sgnl05/sgnl05-racktables/issues) for any type of contribution. +Please use the issue tracker (https://github.com/rspiak/sgnl05-racktables/issues) for any type of contribution. diff --git a/manifests/apache.pp b/manifests/apache.pp index 209a518..9a394bd 100644 --- a/manifests/apache.pp +++ b/manifests/apache.pp @@ -17,6 +17,10 @@ default_vhost => false, default_ssl_vhost => false, mpm_module => 'prefork', + # Security enhancements + trace_enable => 'Off', + server_signature => 'Off', + server_tokens => 'Prod', } class {'::apache::mod::php': }