linux服务器搭建网站的案例:
打开终端控制台,输入命令:“yum -y install httpd”,安装web服务软件。
输入命令:“systemctl start httpd”,启动httpd服务。
输入命令:“vim /etc/httpd/conf/httpd.conf”。进入主配置文件。
输入命令:“vim /etc/httpd/conf.d/httpd-vhosts.conf”。编辑一个子配置文件,代码:
<VirtuaLHost *:80>DocumentRoot "/ var/www/htmt"
<Directory "/var/www/html">
<RequireAll>
Require all granted
</RequireAll>
</Directory>
</VirtuaLHost>
输入命令:“systemctl restart httpd ”。重启服务。
输入命令:“cat /var/www/html/index.html”。查看index.html 文件中的内容。
输入命令:“ifconfig ens33”。查看ens33网卡的地址。
在浏览器中输入地址即可访问。