LEFT | RIGHT |
1 # == Class: hgweb | 1 # == Class: hgweb |
2 # | 2 # |
3 # A hgweb server setup. | 3 # A hgweb server setup. |
4 # | 4 # |
5 # === Parameters: | 5 # === Parameters: |
6 # | 6 # |
7 # [*domain*] | 7 # [*domain*] |
8 # The auhority part of the URL the instance is associated with. | 8 # The auhority part of the URL the instance is associated with. |
9 # | 9 # |
10 # [*is_default*] | 10 # [*is_default*] |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 }, | 171 }, |
172 source => 'puppet:///modules/hgweb/nginx.conf', | 172 source => 'puppet:///modules/hgweb/nginx.conf', |
173 is_default => $is_default, | 173 is_default => $is_default, |
174 log => 'access_log_hg', | 174 log => 'access_log_hg', |
175 private_key => $private_key ? { | 175 private_key => $private_key ? { |
176 'undef' => undef, | 176 'undef' => undef, |
177 default => $private_key, | 177 default => $private_key, |
178 }, | 178 }, |
179 } | 179 } |
180 } | 180 } |
LEFT | RIGHT |