Skip to content

Commit

Permalink
fix apache::mod::jk typo and add hint for more info
Browse files Browse the repository at this point in the history
  • Loading branch information
xorpaul committed Aug 7, 2018
1 parent 206a30d commit 8a2469e
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 8a2469e

Please sign in to comment.