linux 搭建web服务器
1、安装提供web服务的软件
yum -y install httpd
2、启动httpd服务
systemctl start httpd
3、进入主配置文件()
1)vim /etc/httpd/conf/httpd.conf
2)在此范围内添加或删除设置,为了方便编写,编辑了一个子配置文件/etc/httpd/conf.d/httpd-vhosts.conf
4、编辑子配置文件
1)vim /etc/httpd/conf.d/httpd-vhosts.conf (此路径必为conf.d/*.conf)
2)在该文件内编辑以下内容
5、重启服务
systemctl restart httpd
6、编辑页面测试文件
1)在web服务中默认存放网页文件的路径:/var/www/html
2)默认网页文件名字:index.html
3)vim /var/www/html/index.html
4)编写内容按需求
welcome to here
7、浏览器验证
直接输入安装的本机ip地址,可得
来源:https://blog.51cto.com/u_13869720/2306896