欢迎来到天天文库
浏览记录
ID:9679109
大小:49.50 KB
页数:2页
时间:2018-05-05
《ubuntu linux系统下apache ssl配置方法》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、UbuntuLinux系统下ApacheSSL配置方法 基于的Ubuntu版本Edgy,在Ubuntu下面安装配置Apache都比较简单。相应的配置文件位置如下: 默认站点在/var// 配置文件在/etc/apache2/ 日志在/var/log/apache/ 启动脚本是/usr/sin/apache2ctl或者/etc/init.d/apache2 1、安装Apache $sudoapt-getinstallapache2 2、开启SSL模块 $sudoa2enmodss
2、l 3、创建证书 可以使用apache内置的工具创建默认的证书,通过-days指定有效期。 $sudoapache2-ssl-certificate 另外我们可以使用openssl来创建 $sudoopensslreq-x509-ne-outapache.pem-nodes-days999 注:在要求输入monName(eg,YOURname)时,输入你的主机名。 4、编辑SSL的配置 我们可以将当前的默认站点配置文件拷贝一份,然后进行修改 #vi/etc/apache2/si
3、tes-enabled/001-ssl 把端口改为443 加入SSL认证配置 其它的根据需要自己定制与普通配置无异NameVirtualHost*:443ServerSignatureOnSSLEngineOnSSLCertificateFile/etc/apache2/ssl/apache.pemServerAdminasterlocalhost#[......] 修改普通http方式的配置 #vi/etc/apache2/sites-enabled/000-default 把端口
4、改为80 NameVirtualHost*:80 ServerAdminasterlocalhost #[......] 编辑Apache端口配置,加入443端口(SSL的) #vi/etc/apache2/ports.conf: Listen80 Listen443 重新载入Apache的配置 #/etc/init.d/apache2force-reload 或者重新启动Apache2 #/etc/init.d/apache2restart——感谢阅读这篇文章,..,
此文档下载收益归作者所有