Move the firewall rule for ipfs p2p to the right recipe

This commit is contained in:
Greg Karékinian 2018-08-16 15:59:06 +02:00
parent 741c4a5192
commit f31322ab81
2 changed files with 9 additions and 5 deletions

View File

@ -14,11 +14,6 @@ unless node.chef_environment == "development"
protocol :tcp
command :allow
end
firewall_rule 'ipfs_swarm_p2p' do
port 4001
protocol :tcp
command :allow
end
end
include_recipe "kosmos-nodejs"

View File

@ -32,3 +32,12 @@ end
ipfs_config "API.HTTPHeaders.Access-Control-Allow-Origin" do
value ["*"]
end
unless node.chef_environment == "development"
include_recipe 'firewall'
firewall_rule 'ipfs_swarm_p2p' do
port 4001
protocol :tcp
command :allow
end
end