首页 帮助中心 香港云服务器 Ubuntu怎么配置网站ssl实现https访问
Ubuntu怎么配置网站ssl实现https访问
时间 : 2023-06-19 11:30:12 编辑 : 华纳云 阅读量 : 487

要在 Ubuntu 上配置网站的 SSL 证书,以实现 HTTPS 访问,可以按照以下步骤进行操作:

  1. 安装 Apache2 服务器:

    sudo apt update sudo apt install apache2

  2. 安装 OpenSSL:

    sudo apt install openssl

  3. 生成 SSL 证书和私钥:

    sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/ssl/private/example.key -out /etc/ssl/certs/example.crt

    在上面的命令中,将 example.key 替换为你的私钥文件名,example.crt 替换为你的证书文件名。按照提示输入相关信息,如国家、组织、域名等。

  4. 启用 SSL 模块:

    sudo a2enmod ssl

  5. 创建 SSL 配置文件:

    sudo nano /etc/apache2/sites-available/default-ssl.conf

    在打开的文件中,将以下内容添加到 <VirtualHost> 块中:

    SSLEngine on SSLCertificateFile /etc/ssl/certs/example.crt SSLCertificateKeyFile /etc/ssl/private/example.key

    确保将 example.crt 和 example.key 替换为你生成的证书和私钥文件名。

  6. 激活 SSL 配置:

    sudo a2ensite default-ssl.conf

  7. 重启 Apache 服务器:

    sudo systemctl restart apache2

现在,你的网站已经配置为使用 SSL 证书,可以通过 HTTPS 访问。确保在防火墙中打开 443 端口,以允许 SSL 流量通过。

请注意,上述步骤中的文件名和路径可以根据你的实际情况进行调整。另外,这里生成的是自签名证书,如果需要使用受信任的第三方证书机构颁发的证书,请参考相关文档进行配置。

华纳云 推荐文章
ubuntu下连接mysql失败如何解决 linux改hosts不生效如何解决 windows中hosts文件删除有哪些影响吗 windows服务器怎么创建、安装及配置ssl证书 ubuntu如何设置apache网站php跨域与资源跨域 Windows 2008 云服务器如何配置多用户登录? 如何解决Windows Server 2012 R2添加角色和功能失败的问题 如何在Ubuntu18.04系统安装docker Windows 2008如何使用pathping命令 linux分卷打包的7z压缩包如何解压?
客服咨询
7*24小时技术支持
技术支持
渠道支持