[dw-ops] Open up port 443 on the Perlbals, and add a new internal server IP.
[commit: http://hg.dwscoalition.org/dw-ops/rev/6bd3618f66eb]
Open up port 443 on the Perlbals, and add a new internal server IP.
Patch by
mark.
Files modified:
Open up port 443 on the Perlbals, and add a new internal server IP.
Patch by
![[staff profile]](https://www.dreamwidth.org/img/silk/identity/user_staff.png)
Files modified:
- puppet/manifests/serverclass/perlbal.pp
- puppet/modules/iptables/templates/dreamwidth.erb
-------------------------------------------------------------------------------- diff -r 00a4b51e6cc5 -r 6bd3618f66eb puppet/manifests/serverclass/perlbal.pp --- a/puppet/manifests/serverclass/perlbal.pp Thu Apr 09 04:04:40 2009 +0000 +++ b/puppet/manifests/serverclass/perlbal.pp Fri Apr 10 07:27:51 2009 +0000 @@ -14,8 +14,8 @@ # class iptables::dreamwidth::perlbal inherits iptables::dreamwidth { - # open up incoming port 80 - Iptables::Rules["dreamwidth"] { allowed_ports => [ 80 ] } + # open up incoming port 80 and 443 + Iptables::Rules["dreamwidth"] { allowed_ports => [ 80, 443 ] } } class serverclass::perlbal inherits serverclass::dreamwidth { diff -r 00a4b51e6cc5 -r 6bd3618f66eb puppet/modules/iptables/templates/dreamwidth.erb --- a/puppet/modules/iptables/templates/dreamwidth.erb Thu Apr 09 04:04:40 2009 +0000 +++ b/puppet/modules/iptables/templates/dreamwidth.erb Fri Apr 10 07:27:51 2009 +0000 @@ -25,6 +25,7 @@ -A INPUT -s 10.176.64.134 -j ACCEPT -A INPUT -s 10.176.64.135 -j ACCEPT -A INPUT -s 10.176.64.137 -j ACCEPT +-A INPUT -s 10.176.68.231 -j ACCEPT # Accepts all established inbound connections -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT --------------------------------------------------------------------------------