Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 # == Class: discourse_docker | 1 # == Class: discourse_docker |
2 # | 2 # |
3 # Depends on module docker (for now) | 3 # Depends on module docker (for now) |
4 # | 4 # |
5 # == Parameters: | 5 # == Parameters: |
6 | 6 |
7 # [*domain*] | 7 # [*domain*] |
8 # Set the domain (hostname) for the site. This will be used in both nginx and d iscourse settings. | 8 # Set the domain (hostname) for the site. This will be used in both nginx and d iscourse settings. |
9 # | 9 # |
10 # [*certificate*] | 10 # [*certificate*] |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
106 require => Exec['rebuild'], | 106 require => Exec['rebuild'], |
107 } | 107 } |
108 | 108 |
109 nginx::hostconfig {$domain: | 109 nginx::hostconfig {$domain: |
110 source => "puppet:///modules/discourse_docker/site.conf", | 110 source => "puppet:///modules/discourse_docker/site.conf", |
111 certificate => $certificate, | 111 certificate => $certificate, |
112 private_key => $private_key, | 112 private_key => $private_key, |
113 is_default => $is_default, | 113 is_default => $is_default, |
114 log => "access_log_intraforum" | 114 log => "access_log_intraforum" |
115 } | 115 } |
116 } | 116 } |
f.lopez
2017/01/06 15:37:31
are we missing a new line here?
f.nicolaisen
2017/01/06 15:41:06
Acknowledged.
| |
117 | |
LEFT | RIGHT |