16 lines
680 B
YAML
16 lines
680 B
YAML
# 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"
|
|
|