Sha256: e6e7a2c916703b0984e68ebd650be6cb8aec2d79f94c9f9e131eb77bf0baa992
Contents?: true
Size: 1.37 KB
Versions: 22
Compression:
Stored size: 1.37 KB
Contents
# install nginx & passenger class Bard::Provision::Passenger < Bard::Provision def call print "Passenger:" if !http_responding? print " Installing nginx & Passenger," provision_server.run! [ %(grep -qxF "RAILS_ENV=production" /etc/environment || echo "RAILS_ENV=production" | sudo tee -a /etc/environment), %(grep -qxF "EDITOR=vim" /etc/environment || echo "EDITOR=vim" | sudo tee -a /etc/environment), "sudo apt-get install -y vim dirmngr gnupg apt-transport-https ca-certificates", "curl https://oss-binaries.phusionpassenger.com/auto-software-signing-gpg-key.txt | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/phusion.gpg >/dev/null", %(echo "deb https://oss-binaries.phusionpassenger.com/apt/passenger jammy main" | sudo tee /etc/apt/sources.list.d/passenger.list), "sudo apt-get update -y", "sudo apt-get install -y nginx libnginx-mod-http-passenger", "sudo rm /etc/nginx/sites-enabled/default", ].join("; "), home: true end if !app_configured? print " Creating nginx config for app," provision_server.run! "bard setup" end puts " ✓" end def http_responding? system "nc -zv #{provision_server.ssh_uri.host} 80 2>/dev/null" end def app_configured? provision_server.run "[ -f /etc/nginx/sites-enabled/#{server.project_name} ]", quiet: true end end
Version data entries
22 entries across 22 versions & 1 rubygems
Version | Path |
---|---|
bard-1.0.2 | lib/bard/provision/passenger.rb |
bard-1.0.1 | lib/bard/provision/passenger.rb |