-
安裝 Web Server 套件:
#yum -y install httpd
-
設定啟動 Web Server 服務:
#systemctl enable httpd.service #systemctl start httpd.service #systemctl status httpd.service
-
設定開通防火牆:
#firewall-cmd --permanent --add-service=http #firewall-cmd --reload
- 主要設定檔:/etc/httpd/conf/httpd.conf
- 設定檔目錄:/etc/httpd/conf.d/
- 網頁放置目錄:/var/www/html
安裝 PHP 模組:
-
安裝 PHP 模組套件:
#yum -y install php php-bcmath php-cli php-common php-dba php-devel php-embedded php-enchant php-fpm php-gd php-intl php-ldap php-mbstring #yum -y install php-mysqlnd php-odbc php-pdo php-process php-pspell php-recode php-snmp php-soap php-xml php-xmlrpc rrdtool-php uuid-php php-pecl-memcache
或是#yum -y install php-* --skip-broken php-mysql
-
重新啟動 Web Server 服務:
#systemctl restart httpd.service