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

17
ansible/upgrade-apt.yaml Normal file
View File

@@ -0,0 +1,17 @@
- name: Upgrade
hosts: apt
tasks:
- name: Update all packages to their latest version
become: true
become_user: root
become_method: sudo
ansible.builtin.apt:
name: "*"
state: latest
update_cache: yes
- name: Reboot
become: true
become_user: root
become_method: sudo
ansible.builtin.reboot:
reboot_timeout: 600