Skip to content

Commit

Permalink
fix missing comma in sample config
Browse files Browse the repository at this point in the history
there was a missing comma in the sample to handle redirect from
http to https site, making it invalid puppet syntax.
  • Loading branch information
sdague committed Mar 23, 2014
1 parent 208005d commit 3b6a46f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1555,7 +1555,7 @@ Configure a vhost to redirect non-SSL connections to SSL
servername => 'sixteenth.example.com',
port => '80',
docroot => '/var/www/sixteenth',
redirect_status => 'permanent'
redirect_status => 'permanent',
redirect_dest => 'https://sixteenth.example.com/'
}
apache::vhost { 'sixteenth.example.com ssl':
Expand Down

0 comments on commit 3b6a46f

Please sign in to comment.