NGINX
-
[Linux] CentOS7 에 Nginx + PHP 7 + Mysql + Wordpress 설치Linux 2017. 9. 15. 00:21
버전 정보nginx : 1.10.2php : 7.1.9mysql : 5.7.19 NGINX 버전 : 1.10.2 1. EPEL 저장소 추가 # yum -y install epel-release 2. Nginx 설치# yum --enablerepo=epel -y install nginx 3. Nginx 시작# systemctl start nginx 4. 시스템 시작시 Nginx가 실행되도록 하려면 # systemctl enable nginx 5. 방화벽 설정도 해줍니다.# firewall-cmd --add-service=http --permanent # firewall-cmd --add-service=https --permanent# firewall-cmd --reload 여기까지 설정 한 뒤에 웹브라우저..