We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0e9b153 + e54b1ad commit 57dbbf4Copy full SHA for 57dbbf4
manifests/params.pp
@@ -35,7 +35,7 @@
35
'type-map' => 'var'
36
},
37
'AddType' => {
38
- 'type-map' => '.shtml'
+ 'text/html' => '.shtml'
39
40
'AddOutputFilter' => {
41
'INCLUDES' => '.shtml'
spec/acceptance/mod_mime_spec.rb
@@ -33,7 +33,7 @@ class { 'apache': }
33
describe file("#{mod_dir}/mime.conf") do
34
it { is_expected.to contain "AddType application/x-compress .Z" }
it { is_expected.to contain "AddHandler type-map var\n" }
- it { is_expected.to contain "AddType type-map .shtml\n" }
+ it { is_expected.to contain "AddType text/html .shtml\n" }
it { is_expected.to contain "AddOutputFilter INCLUDES .shtml\n" }
end
0 commit comments