1. 程式人生 > >linux下搭建基本web服務

linux下搭建基本web服務

服務端配置:

1.安裝一個可以提供Web功能軟體

[[email protected] ~]# yum -y install httpd

2.啟動httpd服務

[[email protected] ~]# systemctl restart httpd
[[email protected] ~]# systemctl enable httpd


3.編寫自己的測試頁面檔案

在web服務中預設存放網頁檔案的路徑:/var/www/html

預設網頁檔名字:index.html

[[email protected] ~]# vim /var/www/html/index.html

<marquee><font color=red><h1>hello world!

客戶端訪問

[[email protected] /]# firefox 172.25.0.11