summaryrefslogtreecommitdiff
path: root/puppet/modules/site_shorewall/manifests/webapp.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-02-06 23:34:29 +0100
committervarac <varacanero@zeromail.org>2013-02-06 23:34:29 +0100
commit18a2f385ff1f56f493db5302f5ae51173a65cd86 (patch)
treee843be263ad5d2e2d0bea8a44c342fd37e6b30de /puppet/modules/site_shorewall/manifests/webapp.pp
parent07afa7bd4c7dcb941e3984d4fccc1169baf03448 (diff)
configure shorewall for couchdb, tor, webapp
Diffstat (limited to 'puppet/modules/site_shorewall/manifests/webapp.pp')
-rw-r--r--puppet/modules/site_shorewall/manifests/webapp.pp13
1 files changed, 13 insertions, 0 deletions
diff --git a/puppet/modules/site_shorewall/manifests/webapp.pp b/puppet/modules/site_shorewall/manifests/webapp.pp
new file mode 100644
index 00000000..ff9b7646
--- /dev/null
+++ b/puppet/modules/site_shorewall/manifests/webapp.pp
@@ -0,0 +1,13 @@
+class site_shorewall::webapp {
+
+ include site_shorewall::defaults
+
+ shorewall::rule {
+ 'net2fw-https':
+ source => 'net',
+ destination => '$FW',
+ action => 'HTTPS(ACCEPT)',
+ order => 200;
+ }
+
+}