Projekt

Allgemein

Profil

Aktionen

Setup nginx » Historie » Revision 1

Revision 1/2 | Weiter »
Jeremias Keihsler, 21.09.2021 19:28


Install Procedure for nginx

Requirements

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

Preliminary Note

This procedure is based on a documentation supplied by https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-centos-8-de

Install

dnf install nginx

Service

systemctl start nginx
systemctl enable nginx

Firewall

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

Von Jeremias Keihsler vor etwa 3 Jahren aktualisiert · 1 Revisionen