You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -14,6 +14,13 @@ This cookbook provides a secure overlay for apache configuration.
14
14
15
15
* chef
16
16
17
+
### Platform
18
+
19
+
- Debian 7, 8
20
+
- Ubuntu 14.04, 16.04
21
+
- CentOS 6.8, 7.2
22
+
- OracleLinux 6.8, 7.2
23
+
17
24
## Usage
18
25
19
26
A sample role may look like:
@@ -52,12 +59,12 @@ This hardening recipe installs the hardening but expects an existing installatio
52
59
## Security Options
53
60
54
61
*`node['apache']['traceenable'] = 'Off'`
55
-
This directive overrides the behavior of TRACE for both the core server and mod_proxy.
62
+
This directive overrides the behavior of TRACE for both the core server and mod_proxy.
56
63
See [http://httpd.apache.org/docs/2.2/mod/core.html#traceenable](http://httpd.apache.org/docs/2.2/mod/core.html#traceenable) for details
57
64
Defaults to: `Off`
58
65
59
66
*`node['apache_hardening']['allowed_http_methods'] = %w( GET POST )`
60
-
A list of HTTP methods that should be allowed in the server.
67
+
A list of HTTP methods that should be allowed in the server.
61
68
See [http://httpd.apache.org/docs/trunk/mod/mod_allowmethods.html](http://httpd.apache.org/docs/trunk/mod/mod_allowmethods.html) for details
62
69
Defaults to: `GET POST`
63
70
@@ -68,6 +75,8 @@ This hardening recipe installs the hardening but expects an existing installatio
68
75
69
76
## Tests
70
77
78
+
For local testing you can use vagrant or docker to run tests locally. You will have to install Virtualbox and Vagrant or docker on your system. See [Vagrant Downloads](http://downloads.vagrantup.com/) for a vagrant or [Docker Downloads](https://docs.docker.com/mac/) package suitable for your system. For all our tests we use `test-kitchen`. If you are not familiar with `test-kitchen` please have a look at [their guide](http://kitchen.ci/docs/getting-started).
0 commit comments