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 7.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

yum 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 1 Jahr aktualisiert · 1 Revisionen