add dpaste.thezengarden.net; update cert refs; generic updates

This commit is contained in:
2024-12-02 16:17:47 -05:00
parent 53a8741923
commit bb8c43479f
7 changed files with 27 additions and 39 deletions

View File

@ -5,7 +5,6 @@
state: present
tags: always
- name: Enable nginx at boot time
ansible.builtin.service:
name: nginx
@ -13,14 +12,12 @@
tags: always
when: ansible_virtualization_type != "docker"
- name: Clean conf.d
ansible.builtin.file:
path: "{{ proxy_site_conf_dir }}"
state: absent
tags: ['clean_deploy', 'never']
- name: Create conf.d directory
ansible.builtin.file:
path: "{{ proxy_site_conf_dir }}"
@ -28,7 +25,6 @@
mode: "0755"
tags: always
- name: Create log directory
ansible.builtin.file:
path: "{{ proxy_site_log_path }}"
@ -36,7 +32,6 @@
mode: "0755"
tags: always
## TODO: fix the perms on ssl certs!!@*&!@^&*
- name: Clone ssl certs
@ -48,7 +43,6 @@
tags: always
notify: restart nginx
- name: Write configuration file(s)
ansible.builtin.template:
src: proxy_site.j2
@ -59,7 +53,6 @@
tags: always
notify: restart nginx
- name: Start nginx
ansible.builtin.service:
name: nginx