Ubuntu/Apache SSL配置方法

来自站长百科
跳转至: 导航、​ 搜索

Ubuntu | Ubuntu安装 | Ubuntu使用 | Ubuntu编程

基于的Ubuntu版本Edgy,在Ubuntu下面安装配置Apache都比较简单。

配置文件位置[ ]

默认站点在 /var/www/

配置文件在 /etc/apache2/

日志在 /var/log/apache/

启动脚本是 /usr/sin/apache2ctl 或者 /etc/init.d/apache2  

配置方法[ ]

  • 安装Apache
$sudo apt-get install apache2
  • 开启SSL模块
$sudo a2enmod ssl
  • 创建证书

可以使用apache内置的工具创建默认的证书,通过-days指定有效期。

$sudo apache2-ssl-certificate
  1. 另外我们可以使用openssl来创建
  2. $sudo openssl req -x509 -newkey rsa:1024 -keyout apache.pem -out apache.pem -nodes -days 999

注:在要求输入Common Name (eg, YOUR name) 时,输入你的主机名。

  • 编辑SSL的配置

我们可以将当前的默认站点配置文件拷贝一份,然后进行修改

#vi /etc/apache2/sites-enabled/001-ssl
  1. 端口改为443
  2. 加入SSL认证配置
  3. 其它的根据需要自己定制 与普通配置无异
 
NameVirtualHost *:443

ServerSignature On
SSLEngine On
SSLCertificateFile /etc/apache2/ssl/apache.pem

ServerAdmin webmaster@localhost
#[......]
  • 修改普通http方式的配置
#vi /etc/apache2/sites-enabled/000-default

把端口改为80

 
NameVirtualHost *:80
 
ServerAdmin webmaster@localhost
 
#[……]

 

  • 编辑Apache端口配置,加入443端口(SSL的)
#vi /etc/apache2/ports.conf:
Listen 80
Listen 443
  • 重新载入Apache的配置
#/etc/init.d/apache2 force-reload
  • 或者重新启动Apache2
#/etc/init.d/apache2 restart

参考来源[ ]

参考来源

Ubuntu使用手册导航

Ubuntu安装

U盘安装Ubuntu 10.04 | ubuntu 7.10 server、alternate版本的安装 | Ubuntu/XP下硬盘安装Ubuntu 9.04的方法 |Ubuntu 9.04 RC安装图辑 | Vmware虚拟机下Ubuntu 8.04安装

Ubuntu使用

Ubuntu+Apache+PHP+MySQL+Memcached | 搭建open offcie开发环境 | Apache SSL配置方法 | 清理磁盘空间 | 常用工具介绍

Ubuntu编程

Linux内核编译 | APT常用命令参数 | 配置Java+Eclipse+MyEclipse环境 | 配制Eclipse+PHP开发环境

Ubuntu常见问题

FAQ