blob: 044fa70d9d5ac7589c0eb7ca94d51313b80b9f59 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
---
ansible_host: 192.168.1.128
sshd__listen_port: "{{ ansible_port }}"
nextcloud__listen_port: 8003
nextcloud__domain_name: cloud.rgoncalves.se
nextcloud__php_memory_limit: 8192M
__ip:
external: 192.168.1.128
internal: 10.10.0.21
__services:
- name: ssh
protocol: tcp
port: "{{ ansible_port }}"
- name: wireguard
protocol: udp
port: 53
- name: http
protocol: tcp
port: 80
- name: https
protocol: tcp
port: 443
- name: nextcloud
domain: "{{ nextcloud__domain_name }}"
protocol: tcp
port: "{{ nextcloud__listen_port }}"
|