Apache 443 端口配置
时间: 2023-09-03 13:13:18 浏览: 287
Apache 443 端口是用于 HTTPS 安全连接的默认端口,下面是 Apache 443 端口配置的步骤:
1. 确保 Apache 服务器已经安装并且启动。
2. 打开 Apache 的配置文件,一般是 /etc/httpd/conf/httpd.conf 或 /etc/apache2/httpd.conf。
3. 找到以下配置行:
```
Listen 80
```
在该行下面添加以下配置行:
```
Listen 443 https
```
4. 找到以下配置行:
```
<VirtualHost *:80>
```
复制该行并将其中的 80 改为 443,同时添加以下配置行:
```
SSLEngine on
SSLCertificateFile /path/to/certificate.crt
SSLCertificateKeyFile /path/to/private.key
```
其中,/path/to/certificate.crt 和 /path/to/private.key 分别是 SSL 证书和私钥的路径。
5. 保存并关闭配置文件。
6. 重新启动 Apache 服务器,使配置生效。
```
sudo service httpd restart
```
或
```
sudo systemctl restart apache2
```
完成以上配置后,就可以通过 HTTPS 安全连接访问 Apache 服务器了。
阅读全文