mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
The default in the previous commit, inherited from camo, was to bind
to 0.0.0.0:9292. In standalone deployments, camo is deployed on the
same host as the nginx reverse proxy, and as such there is no need to
open it up to other IPs.
Make `zulip::camo` take an optional parameter, which allows overriding
it in puppet, but skips a `zulip.conf` setting for it, since it is
unlikely to be adjust by most users.
(cherry picked from commit c514feaa22)
6 lines
88 B
Puppet
6 lines
88 B
Puppet
class zulip_ops::camo {
|
|
class { 'zulip::camo':
|
|
listen_address => '0.0.0.0',
|
|
}
|
|
}
|