working nginx stream proxy

This commit is contained in:
2024-01-31 01:05:47 -05:00
parent 41f4e5c12a
commit fd0699170f
19 changed files with 408 additions and 130 deletions

View File

@@ -0,0 +1,16 @@
- name: Upgrade
hosts: colors
tasks:
- name: Upgrade all packages
become: true
become_user: root
become_method: sudo
ansible.builtin.dnf:
name: "*"
state: latest
- name: Reboot
become: true
become_user: root
become_method: sudo
ansible.builtin.reboot:
reboot_timeout: 600