mirror of
https://github.com/mr0xb/home-iac.git
synced 2026-08-27 19:34:57 -04:00
22 lines
No EOL
475 B
HCL
22 lines
No EOL
475 B
HCL
resource "unifi_port_forward" "rev_proxy_https" {
|
|
name = "UVC_HTTPs_ChooChoo"
|
|
enabled = true
|
|
port_forward_interface = "wan"
|
|
src_ip = "any"
|
|
dst_port = "443"
|
|
fwd_ip = "192.168.1.206"
|
|
fwd_port = "443"
|
|
protocol = "tcp"
|
|
log = true
|
|
}
|
|
|
|
resource "unifi_port_forward" "rev_proxy_http" {
|
|
name = "UVC_HTTP_ChooChoo"
|
|
enabled = true
|
|
port_forward_interface = "wan"
|
|
src_ip = "any"
|
|
dst_port = "80"
|
|
fwd_ip = "192.168.1.206"
|
|
fwd_port = "80"
|
|
protocol = "tcp"
|
|
} |