CentOS 8
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
Allow access through firewall
firewall-cmd --zone=public --permanent --add-service=https
firewall-cmd --zone=public --permanent --add-service=http
firewall-cmd --reload
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
Adding additional IP addresses
nmcli con mod ens3 +ipv6.addresses "2001:db8::2"
Question: Which service should be restarted, so that "ip -6 a a..." has not to be issued manually?
x