computer-playbook/roles/server_docker-yourls/tasks/main.yml

18 lines
684 B
YAML
Raw Normal View History

2020-12-24 14:27:31 +01:00
---
- name: recieve {{domain}} certificate
command: certbot certonly --agree-tos --email {{administrator_email}} --non-interactive --webroot -w /var/lib/letsencrypt/ -d {{domain}}
- name: configure {{domain}}.conf
2023-04-18 15:41:14 +02:00
template: src=roles/server_native-docker-reverse-proxy/templates/domain.conf.j2 dest=/etc/nginx/conf.d/{{domain}}.conf
2020-12-24 14:27:31 +01:00
notify: restart nginx
2023-04-19 00:03:13 +02:00
- name: "create /home/administrator/docker-compose/yourls/"
file:
2023-04-19 00:03:13 +02:00
path: "/home/administrator/docker-compose/yourls/"
state: directory
mode: 0755
2023-04-19 00:03:13 +02:00
- name: add docker-compose.yml
template: src=docker-compose.yml.j2 dest=/home/administrator/docker-compose/yourls/docker-compose.yml
notify: recreate yourls