Projekt

Allgemein

Profil

Aktionen

Install Procedure for nginx

Requirements

To install apache you will need the following:
  • a installed and supported operating system (e.g. CentOS 9.x)
  • root-access
  • a fast internet connection

Preliminary Note

This procedure is based on a documentation supplied by https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/9/html/deploying_web_servers_and_reverse_proxies/setting-up-and-configuring-nginx_deploying-web-servers-and-reverse-proxies

Install

there are multiple streams available.

dnf module list | grep nginx

as of 2025-07-28:
1.22, 1.24, 1.26

dnf module enable nginx:1.26
dnf install nginx

Service

systemctl start nginx
systemctl enable nginx

Firewall

firewall-cmd --permanent --add-service=http
firewall-cmd --permanent --add-service=https
firewall-cmd --reload

Von Jeremias Keihsler vor 2 Tagen aktualisiert · 2 Revisionen