initial commit

This commit is contained in:
mr0xb 2026-05-24 02:51:15 -04:00
commit 5e3d71294d
10 changed files with 274 additions and 0 deletions

View file

@ -0,0 +1,22 @@
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"
}