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

22 lines
685 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-26 11:52:11 +02:00
template:
2023-09-02 13:13:28 +02:00
src: "roles/docker-reverse-proxy/templates/domain.conf.j2"
2023-04-26 11:52:11 +02:00
dest: "/etc/nginx/conf.d/{{domain}}.conf"
2020-12-24 14:27:31 +01:00
notify: restart nginx
2023-04-26 11:52:11 +02:00
- name: "create {{path_docker_compose_files}}yourls/"
file:
2023-04-26 11:52:11 +02:00
path: "{{path_docker_compose_files}}yourls/"
state: directory
mode: 0755
2023-04-19 00:03:13 +02:00
- name: add docker-compose.yml
2023-04-26 11:52:11 +02:00
template:
src: "docker-compose.yml.j2"
dest: "{{path_docker_compose_files}}yourls/docker-compose.yml"
notify: recreate yourls