Skip to content
This repository has been archived by the owner on Feb 4, 2020. It is now read-only.

Commit

Permalink
Issue #68 - Updated README.markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
FireDrunk committed Feb 9, 2016
1 parent d10f558 commit 108c3b3
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,29 @@ node 'uchiwa-server.foo.com' {
}
```

## SSL (HTTPS)

This is an example on how to use Uchiwa with HTTPS:

Puppet:
```
class { 'uchiwa':
ssl = {
'certfile' => '/path/to/certfile',
'keyfile' => '/path/to/keyfile',
}
}
```
Simple YAML:
```
uchiwa::ssl: { 'certfile': '/opt/ssl/public.crt', 'keyfile': '/opt/ssl/private.key' }
```

Litle more advanced:
```
uchiwa::ssl: { 'certfile': '/opt/ssl/%{::hostname}.crt', 'keyfile': '/opt/ssl/%{::hostname}.key' }
```

## License

See LICENSE file.

0 comments on commit 108c3b3

Please sign in to comment.