如何在Linux 中搭建一个web服务器
发布网友
发布时间:2022-02-26 09:54
我来回答
共4个回答
热心网友
时间:2022-02-26 11:24
web服务器的简单搭建
1、安装一个可以提供web服务的软件
yum -y install httpd
2、 启动httpd服务
systemctl start httpd
3、进入主配置文件
vim /etc/httpd/conf/httpd.conf
在此范围内添加或删除设置,为了方便编写,编辑了一个子配置文件/etc/httpd/conf.d/httpd-vhosts.conf
4、 编辑子配置文件
vim /etc/httpd/conf.d/httpd-vhosts.conf 此路径必为conf.d/*.conf (意:为.conf 后缀命名)
systemctl restart httpd 重启服务
5、 编辑页面测试文件
在web服务中默认存放网页文件的路径:/var/ chaodiquan.com /html
默认网页文件名字:index.html
6、 浏览器测试
ifconfig ens33 查看ens33网卡的地址
在浏览器里面 输入你的IP就可以看到测试文件里 希望可以帮助到的哈!
热心网友
时间:2022-02-26 12:42
要看你安装的是什么系统,
我这里安装的是centos 7.2,
然后再安装nginx MySQL PHP
就这几个,你参考下。
热心网友
时间:2022-02-26 14:16
很简单,一条命令
yum install nginx -y
service nginx start
热心网友
时间:2022-02-26 16:08
楼主什么系统?
Ubuntu系统
sudo apt install nginx