add home range for 443
continuous-integration/drone/push Build was killed Details

This commit is contained in:
Torma Kristóf 2023-08-28 09:49:07 +02:00
parent 5bd2bd584b
commit ca386aa414
2 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,7 @@
---
ansible_become: true
ansible_user: ansible@intra.tormakris.dev
webgw_allowedranges:
- 192.168.69.0/24
- 192.168.1.0/24
...

View File

@ -3,7 +3,8 @@
community.general.ufw:
rule: allow
port: https
src: 192.168.69.0/24
src: {{ item }}
with_items: "{{ webgw_allowedranges }}"
- name: "Install Nginx via apt"
ansible.builtin.apt: