Skip to content

Commit

Permalink
fix syntax of code examples
Browse files Browse the repository at this point in the history
  • Loading branch information
pmoranga committed Mar 28, 2015
1 parent b7aa3f0 commit 8f8f6ac
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -811,9 +811,9 @@ Installs Apache mod_status and uses the status.conf.erb template. These are the

```puppet
class { 'apache::mod::status':
allow_from = ['127.0.0.1','::1'],
extended_status = 'On',
status_path = '/server-status',
allow_from => ['127.0.0.1','::1'],
extended_status => 'On',
status_path => '/server-status',
){
Expand All @@ -826,9 +826,9 @@ Installs Apache mod_expires and uses the expires.conf.erb template. These are th

```puppet
class { 'apache::mod::expires':
expires_active = true,
expires_default = undef,
expires_by_type = undef,
expires_active => true,
expires_default => undef,
expires_by_type => undef,
){
Expand All @@ -839,7 +839,7 @@ Installs Apache mod_expires and uses the expires.conf.erb template. These are th

```puppet
class { 'apache::mod::expires':
expires_by_type = [
expires_by_type => [
{ 'text/json' => 'access plus 1 month' },
{ 'text/html' => 'access plus 1 year' },
]
Expand Down Expand Up @@ -868,8 +868,8 @@ To specify an alternate mod\_wsgi package name to install and the name of the mo
wsgi_socket_prefix => "\${APACHE_RUN_DIR}WSGI",
wsgi_python_home => '/path/to/venv',
wsgi_python_path => '/path/to/venv/site-packages',
package_name => 'python27-mod_wsgi',
mod_path => 'python27-mod_wsgi.so',
package_name => 'python27-mod_wsgi',
mod_path => 'python27-mod_wsgi.so',
}
```

Expand Down

0 comments on commit 8f8f6ac

Please sign in to comment.