Heim >Betrieb und Instandhaltung >Nginx >So installieren und stellen Sie Nginx bereit und konfigurieren https in Centos7.3
Installationsumgebung
1. gcc-Installation
yum install gcc-c++
2. pcre pcre-devel-Installation
yum install -y pcre pcre-devel
3. zlib-Installation
yum install -y zlib zlib-devel
4. openssl-Installation
yum install -y openssl openssl-devel
Unzip
wget -c https://nginx.org/download/nginx-1.9.9.tar.gzKonfiguration
tar -zxvf nginx-1.9.9.tar.gz cd nginx-1.9.9/
Konfiguration https:
#./configure
Installation
./configure --with-http_ssl_module
make make install# 🎜🎜 #Nginx starten, stoppen
whereis nginx
./nginx -t: Überprüfen Sie, ob die Konfigurationsdatei nginx.conf korrekt ist
Um SSL zu konfigurieren, überprüfen Sie bitte, welchen Server Sie verwenden, wenn Sie einen Domainnamen beantragen, und konfigurieren Sie es dann direkt im Server-Lastausgleich.
Das obige ist der detaillierte Inhalt vonSo installieren und stellen Sie Nginx bereit und konfigurieren https in Centos7.3. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!