Move the firewall rule for ipfs p2p to the right recipe

This commit is contained in:
2018-08-16 15:59:06 +02:00
parent 741c4a5192
commit f31322ab81
2 changed files with 9 additions and 5 deletions
@@ -14,11 +14,6 @@ unless node.chef_environment == "development"
protocol :tcp protocol :tcp
command :allow command :allow
end end
firewall_rule 'ipfs_swarm_p2p' do
port 4001
protocol :tcp
command :allow
end
end end
include_recipe "kosmos-nodejs" include_recipe "kosmos-nodejs"
@@ -32,3 +32,12 @@ end
ipfs_config "API.HTTPHeaders.Access-Control-Allow-Origin" do ipfs_config "API.HTTPHeaders.Access-Control-Allow-Origin" do
value ["*"] value ["*"]
end end
unless node.chef_environment == "development"
include_recipe 'firewall'
firewall_rule 'ipfs_swarm_p2p' do
port 4001
protocol :tcp
command :allow
end
end