-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |