Expose proxy to web
This means it doesn't need to go via VPN
This commit is contained in:
parent
54ec7f2332
commit
d1ba7d8e80
1 changed files with 7 additions and 0 deletions
|
@ -29,3 +29,10 @@ resource "vultr_firewall_rule" "grimes_web_secure" {
|
|||
from_port = 443
|
||||
network = "0.0.0.0/0"
|
||||
}
|
||||
|
||||
resource "vultr_firewall_rule" "grimes_proxy" {
|
||||
firewall_group_id = vultr_firewall_group.grimes.id
|
||||
protocol = "tcp"
|
||||
from_port = 1080
|
||||
network = "0.0.0.0/0"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue