From 40b9d658d72ab205fc6ed957530ef6aac1a49faa Mon Sep 17 00:00:00 2001 From: voodoorai2000 Date: Tue, 21 May 2019 13:46:48 +0200 Subject: [PATCH] Bring back deploy-secrets.yml.example It was accidentally removed in this PR[1] and it is necessary to help in the capistrano configuration. [1] https://github.com/consul/consul/pull/3412/files#diff-e2e7e59de6b2b5c76f396a862c48ccc5L1 --- config/deploy-secrets.yml.example | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 config/deploy-secrets.yml.example diff --git a/config/deploy-secrets.yml.example b/config/deploy-secrets.yml.example new file mode 100644 index 000000000..d6594e358 --- /dev/null +++ b/config/deploy-secrets.yml.example @@ -0,0 +1,28 @@ +staging: + deploy_to: "/var/www/consul" + ssh_port: "21" + server: "staging.consul.es" + db_server: "postgre.consul.es" + user: "xxxxx" + server_name: "staging.consul.es" + full_app_name: "consul" + +preproduction: + deploy_to: "/var/www/consul" + ssh_port: "2222" + server1: xxx.xxx.xxx.xxx + server2: xxx.xxx.xxx.xxx + db_server: xxx.xxx.xxx.xxx + user: xxxxx + server_name: pre.consul.es + full_app_name: "consul" + +production: + deploy_to: "/var/www/consul" + ssh_port: "22" + server1: xxx.xxx.xxx.xxx + server2: xxx.xxx.xxx.xxx + db_server: xxx.xxx.xxx.xxx + user: "deploy" + server_name: "consul.es" + full_app_name: "consul"