stuff
This commit is contained in:
parent
47baa9d238
commit
83fa331ae4
8 changed files with 359 additions and 7 deletions
16
ansible/services/personal-blog/personal_blog_vars.yml
Normal file
16
ansible/services/personal-blog/personal_blog_vars.yml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# Personal Blog Configuration
|
||||
|
||||
# Web root directory on server
|
||||
personal_blog_web_root: "/var/www/pablohere.contrapeso.xyz"
|
||||
|
||||
# Remote access for deployment
|
||||
remote_host_name: "vipy"
|
||||
remote_host: "{{ hostvars.get(remote_host_name, {}).get('ansible_host', remote_host_name) }}"
|
||||
remote_user: "{{ hostvars.get(remote_host_name, {}).get('ansible_user', 'counterweight') }}"
|
||||
remote_key_file: "{{ hostvars.get(remote_host_name, {}).get('ansible_ssh_private_key_file', '') }}"
|
||||
remote_port: "{{ hostvars.get(remote_host_name, {}).get('ansible_port', 22) }}"
|
||||
|
||||
# Local deployment paths
|
||||
local_source_dir: "{{ lookup('env', 'HOME') }}/pablohere/public"
|
||||
deploy_alias_name: "deploy-personal-blog"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue