this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Ports..

+12 -6
+2 -1
k8s/nebula/vm/pbx/template/svc-ssh.yaml
··· 8 8 freepbx: "true" 9 9 vm.home.arpa/os: freepbx 10 10 ports: 11 - - port: 22 11 + - name: ssh 12 + port: 22 12 13 protocol: TCP 13 14 targetPort: 22 14 15
+2 -1
k8s/nebula/vm/pbx/template/svc-ui.yaml
··· 8 8 freepbx: "true" 9 9 vm.home.arpa/os: freepbx 10 10 ports: 11 - - port: 443 11 + - name: https 12 + port: 443 12 13 protocol: TCP 13 14 targetPort: 443
+8 -4
k8s/nebula/vm/pbx/template/svc-voip.yaml
··· 9 9 freepbx: "true" 10 10 vm.home.arpa/os: freepbx 11 11 ports: 12 - - port: 5060 12 + - name: voip-tcp 13 + port: 5060 13 14 protocol: TCP 14 15 targetPort: 5060 15 - - port: 5060 16 + - name: voip-udp 17 + port: 5060 16 18 protocol: UDP 17 19 targetPort: 5060 18 - - port: 5061 20 + - name: voip-encrypted-tcp 21 + port: 5061 19 22 protocol: TCP 20 23 targetPort: 5061 21 - - port: 5061 24 + - name: voip-encrypted-udp 25 + port: 5061 22 26 protocol: UDP 23 27 targetPort: 5061 24 28