安裝網頁伺服器及測試套件 elinks
# yum install -y httpd elinks
開機時啟動
# chkconfig httpd on
啟動服務
# service httpd start
開啟防火牆
# iptables -A INPUT -p tcp --dport 80 -j ACCEPT
# iptables -A INPUT -p tcp --dport 443 -j ACCEPT
測試
- 在 DocumentRoot 路徑下建立首面
- 使用文字瀏覽器 elinks 測試
# vim /var/www/html/index.html
<h1> Web Server </h1>
# elinks http://localhost/
補充:使用 rpm 尋找相關的組態檔
# rpm -qc httpd | grep --color conf
/etc/httpd/conf.d/welcome.conf
/etc/httpd/conf/httpd.conf
/etc/httpd/conf/magic
/etc/sysconfig/httpd
沒有留言:
張貼留言