diff options
Diffstat (limited to 'roles/httpd/files')
-rw-r--r-- | roles/httpd/files/mod_filter.conf | 3 | ||||
-rw-r--r-- | roles/httpd/files/name_vhost.conf | 2 | ||||
-rw-r--r-- | roles/httpd/files/remove_sslv3.conf | 1 |
3 files changed, 6 insertions, 0 deletions
diff --git a/roles/httpd/files/mod_filter.conf b/roles/httpd/files/mod_filter.conf new file mode 100644 index 0000000..cde8c84 --- /dev/null +++ b/roles/httpd/files/mod_filter.conf @@ -0,0 +1,3 @@ +# not enabled by default on centos 6 +LoadModule filter_module modules/mod_filter.so + diff --git a/roles/httpd/files/name_vhost.conf b/roles/httpd/files/name_vhost.conf new file mode 100644 index 0000000..d2d1c0d --- /dev/null +++ b/roles/httpd/files/name_vhost.conf @@ -0,0 +1,2 @@ +NameVirtualHost *:443 +NameVirtualHost *:80 diff --git a/roles/httpd/files/remove_sslv3.conf b/roles/httpd/files/remove_sslv3.conf new file mode 100644 index 0000000..0872cbe --- /dev/null +++ b/roles/httpd/files/remove_sslv3.conf @@ -0,0 +1 @@ +SSLProtocol all -SSLv2 -SSLv3 |