Skip to content

Commit

Permalink
Added production deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
strtwtsn committed Sep 27, 2021
1 parent bdab799 commit e2f7b1c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions config/deploy/production.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
################################################################################
## Setup Environment
################################################################################

# The Git branch this environment should be attached to.
set :branch, 'main'

# The environment's name. To be used in commands and other references.
set :stage, :production

# The URL of the website in this environment.
set :stage_url, 'elearning.production.wordpress-linode.linode.unep-wcmc.org'

# The environment's server credentials
server 'production.wordpress-linode.linode.unep-wcmc.org', user: 'wcmc', roles: %w(web app db)

# The deploy path to the website on this environment's server.
set :deploy_to, "/home/#{fetch(:deploy_user)}/#{fetch(:application)}"

# The web user on this environment's server.
set :web_user, 'www-data'

0 comments on commit e2f7b1c

Please sign in to comment.