用Apache服務部署網站

weixin_47627237發表於2020-11-29

部署Apache程式
yum install httpd 安裝Apache程式(Apache服務的軟體包名為httpd)
systemctl restart httpd 啟用httpd服務
systemctl enable httpd 加入開機啟動項

瀏覽器訪問:127.0.0.1(本機)可以看到httpd服務程式的預設頁面,當看到這個頁面時,說明服務程式正常啟動,但可能還會有另外兩種情況
在這裡插入圖片描述
二、配置服務檔案
常用引數 作用
ServerRoot 服務目錄
ServerAdmin 管理員郵箱
User 執行服務的使用者
Group 執行服務的使用者組
DocumentRoot 網站資料目錄
Listen 監聽的IP地址與埠號

mkdir /home/wwwroot 新的網站資料儲存目錄
echo “tony” > index.html 並在該目錄下建立檔案
vim /etc/httpd/conf/httpd.conf 修改httpd服務程式主配置檔案,把網站資料儲存路徑修改為/home/wwwroot
119行 DocumentRoot “路徑”
124行 <Directory “/路徑”>
systemctl restart httpd 重啟服務並載入啟動項
systemctl enable httpd
此時會發現因為許可權不足導致出現的是httpd預設首頁(SElinux的安全上下文).
setenforce 0 (0禁用1啟用)
禁用SElinux,就可以正常訪問內容了

相關文章