Merge branch 'master' of https://git.nbit.ch/drpuur/onyx_pods
This commit is contained in:
commit
c23cb6c4f5
39
README.md
39
README.md
|
|
@ -58,6 +58,7 @@ enable EPEL Repo:
|
|||
# firewall-cmd --add-service={http,https} --permanent
|
||||
# firewall-cmd --remove-service=cockpit --permanent
|
||||
# firewall-cmd --add-port=1883/tcp --permanent ; only for MQTT
|
||||
# firewall-cmd --add-port=25/tcp --permanent ; for Postfix
|
||||
# firewall-cmd --reload
|
||||
|
||||
List Rules:
|
||||
|
|
@ -303,7 +304,45 @@ containers$ systemctl --user start podman-kube@$escaped.service
|
|||
containers$ systemctl --user enable podman-kube@$escaped.service
|
||||
```
|
||||
|
||||
## Postfix
|
||||
|
||||
```bash
|
||||
# dnf install postfix
|
||||
|
||||
/etc/postfix/main.cf:
|
||||
---
|
||||
inet_interfaces = all
|
||||
|
||||
smtpd_tls_security_level = none
|
||||
|
||||
virtual_alias_domains = wo-bisch.ch mini-beieli.ch
|
||||
virtual_alias_maps = hash:/etc/postfix/virtual
|
||||
---
|
||||
|
||||
# tail -12 /etc/postfix/virtual
|
||||
abuse@mini-beieli.ch nbitinf@nbit.ch
|
||||
hostmaster@mini-beieli.ch nbitinf@nbit.ch
|
||||
info@mini-beieli.ch nbitinf@nbit.ch
|
||||
mail@mini-beieli.ch nbitinf@nbit.ch
|
||||
postmaster@mini-beieli.ch nbitinf@nbit.ch
|
||||
register@mini-beieli.ch nbitinf@nbit.ch
|
||||
abuse@wo-bisch.ch nbitinf@nbit.ch
|
||||
hostmaster@wo-bisch.ch nbitinf@nbit.ch
|
||||
info@wo-bisch.ch nbitinf@nbit.ch
|
||||
mail@wo-bisch.ch nbitinf@nbit.ch
|
||||
postmaster@wo-bisch.ch nbitinf@nbit.ch
|
||||
register@wo-bisch.ch nbitinf@nbit.ch
|
||||
|
||||
# postmap /etc/postfix/virtual
|
||||
|
||||
# systemctl enable postfix
|
||||
# systemctl start postfix
|
||||
|
||||
Creat DNS Records:
|
||||
mx1.nbit.ch and mx2.nbit.ch (A/AAAA Records to the same IPs as onyx and onyx-dev)
|
||||
|
||||
Change SPF Records to include mx1 and mx2
|
||||
```
|
||||
|
||||
## Secondary Nameserver
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue