Hi.
I have an issue with one of the nodes in my puppet config.
In the node's manifest I have this apache class
class { 'apache':
default_vhost => true,
mpm_module => false,
trace_enable => 'Off',
keepalive => 'On',
keepalive_timeout => '10',
max_keepalive_requests => '100',
headers => 'always append X-Frame-Options SAMEORIGIN',
}
When I run the puppet agent, this is what I get:
**Error: Could not retrieve catalog from remote server: Error 400 on SERVER: Invalid parameter headers on Class[Apache]**
I don't know what is the problem here. I tried with different headers but I couldn't make it work.
Any suggestions?
↧