CentOS7-設置個人網頁
以下說明皆是以Oracle VM VirtualBox之虛擬機演練CentOS7的個人網頁設置
可以先參考前一篇文章〈CentOS7-簡單的網頁伺服器架設〉安裝好httpd
一、修改個人用戶設定檔
# vim /etc/httpd/conf.d/userdir.conf
在UserDir disabled前面加上#號,以停用
在下面UserDir public_html前面的#號刪掉,以啟用
# systemctl restart httpd.service => 重新載入httpd.service
二、進入使用者權限(本例以user1示範,可以自行新增使用者),新增網頁
# su user1
# cd
# mkdir public_html
# echo "hello, this is user1 test html." > public_html/index.html
三、進入root,更改user1的讀取權限
# chmod 755 /home/user1
四、開啟瀏覽器輸入網址127.0.0.1/~user1,即可看見hello, this is user1 test html.的內容
可以先參考前一篇文章〈CentOS7-簡單的網頁伺服器架設〉安裝好httpd
一、修改個人用戶設定檔
# vim /etc/httpd/conf.d/userdir.conf
在UserDir disabled前面加上#號,以停用
在下面UserDir public_html前面的#號刪掉,以啟用
# systemctl restart httpd.service => 重新載入httpd.service
二、進入使用者權限(本例以user1示範,可以自行新增使用者),新增網頁
# su user1
# cd
# mkdir public_html
# echo "hello, this is user1 test html." > public_html/index.html
三、進入root,更改user1的讀取權限
# chmod 755 /home/user1
四、開啟瀏覽器輸入網址127.0.0.1/~user1,即可看見hello, this is user1 test html.的內容
留言
張貼留言