12 lines
187 B
Ruby
12 lines
187 B
Ruby
#
|
|
# Cookbook Name:: kosmos_openresty
|
|
# Recipe:: firewall
|
|
|
|
include_recipe "kosmos-base::firewall"
|
|
|
|
firewall_rule "http/https" do
|
|
port [80, 443]
|
|
protocol :tcp
|
|
command :allow
|
|
end
|