centos7配置web服务器
时间: 2023-12-02 11:42:35 浏览: 133
以下是在CentOS 7上配置Apache Web服务器的步骤:
1.安装Apache Web服务器
```shell
sudo yum install httpd
```
2.启动Apache Web服务器
```shell
sudo systemctl start httpd.service
```
3.设置Apache Web服务器开机自启动
```shell
sudo systemctl enable httpd.service
```
4.配置防火墙以允许HTTP和HTTPS流量
```shell
sudo firewall-cmd --permanent --add-service=http
sudo firewall-cmd --permanent --add-service=https
sudo firewall-cmd --reload
```
5.创建一个简单的网页以测试Apache Web服务器是否正常工作
```shell
sudo vi /var/www/html/index.html
```
在编辑器中输入以下内容:
```html
<!DOCTYPE html>
<html>
<head>
<title>My First Web Page</title>
</head>
<body>
<h1>Hello World!</h1>
<p>This is my first web page.</p>
</body>
</html>
```
6.在Web浏览器中输入服务器的IP地址或域名,应该可以看到“Hello World!”的消息。
阅读全文