CentOS 8

From MK Wiki EN
Revision as of 18:39, 1 August 2023 by MkWikiEnSysOp (talk | contribs) (Added category)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

My notes on CentOS 8... just a DRAFT so far!

nginx as reverse proxy

setsebool httpd_can_network_connect on -P

Credits

Allow access through firewall

firewall-cmd --zone=public --permanent --add-service=https

firewall-cmd --zone=public --permanent --add-service=http

firewall-cmd --reload

Credits

nginx self-signed TLS certificates

openssl req -newkey rsa:2048 -nodes -keyout /etc/pki/nginx/private/server.key -x509 -days 365 -out /etc/pki/nginx/server.crt

Credits

Adding additional IP addresses

nmcli con mod ens3 +ipv6.addresses "2001:db8::2"

Credits

Question: Which service should be restarted, so that "ip -6 a a..." has not to be issued manually?

x