Skip to content

Commit

Permalink
Merge pull request puppetlabs#1812 from xorpaul/master
Browse files Browse the repository at this point in the history
fix apache::mod::jk example typo and add link for more info
  • Loading branch information
david22swan authored Nov 5, 2018
2 parents 10ca7e3 + 8a2469e commit 28ddb77
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2267,17 +2267,19 @@ Installs and manages `mod_jk`, a connector for Apache httpd redirection to old v

``` puppet
class { '::apache::mod::jk':
ip = '192.168.2.15',
workers_file = 'conf/workers.properties',
mount_file = 'conf/uriworkermap.properties',
shm_file = 'run/jk.shm',
shm_size = '50M',
$workers_file_content = {
ip => '192.168.2.15',
workers_file => 'conf/workers.properties',
mount_file => 'conf/uriworkermap.properties',
shm_file => 'run/jk.shm',
shm_size => '50M',
workers_file_content => {
<Content>
},
}
```

See [templates/mod/jk/workers.properties.erb](templates/mod/jk/workers.properties.erb) for more information.

**Parameters within `apache::mod::jk`**:

The best source for understanding the `mod_jk` parameters is the [official documentation](https://tomcat.apache.org/connectors-doc/reference/apache.html), except for:
Expand Down

0 comments on commit 28ddb77

Please sign in to comment.