summaryrefslogtreecommitdiff
path: root/manifests/virtual/http.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/virtual/http.pp')
-rw-r--r--manifests/virtual/http.pp11
1 files changed, 6 insertions, 5 deletions
diff --git a/manifests/virtual/http.pp b/manifests/virtual/http.pp
index b1e7faa..efd3dca 100644
--- a/manifests/virtual/http.pp
+++ b/manifests/virtual/http.pp
@@ -1,18 +1,19 @@
-class firewall::virtual::http($destination, $zone = 'vm') {
+class firewall::virtual::http($destination) {
shorewall::rule { 'http-route-1':
action => 'DNAT',
- source => 'net',
- destination => "$zone:$destination:80",
+ source => 'vm',
+ destination => "fw:$destination:80",
proto => 'tcp',
destinationport => '80',
+ originaldest => hiera('firewall::external_ip', $::ipaddress),
ratelimit => '-',
order => 600,
}
shorewall::rule { 'http-route-2':
action => 'DNAT',
- source => '$FW',
- destination => "fw:$destination:80",
+ source => 'net',
+ destination => "vm:$destination:80",
proto => 'tcp',
destinationport => '80',
originaldest => hiera('firewall::external_ip', $::ipaddress),