免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1336 | 回复: 0
打印 上一主题 下一主题

nginx ssl 安装配置文档. [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-10-15 17:21 |只看该作者 |倒序浏览
nginx + ssl 安装与配置
安装:

  nginx-0.7.62.tar.gz   openssl-0.9.8k.tar.gz    pcre-7.9.tar.gz

openssl-0.9.8k
./configure
make make install
/usr/local/openssl

pcre-7.9.tar.gz
./configure
make make install

nginx-0.7.62.tar.gz

./configure --with-md5=/usr/lib  --with-openssl=/home/admin/appli/openssl-0.9.8k(注:  OPENSSL 原安装编译路径)  --with-http_ssl_module

make make install



配置:

生成证书
#openssl genrsa -des3 -out privkey.pem 2048
# openssl req -new -key privkey.pem -out cert.csr(把cert.csr 发给CA机构  获得证书 UserCert.pem)

Generating RSA private key, 2048 bit long modulus
................................+++
....+++
e is 65537 (0x10001)
Enter pass phrase for privkey.pem:
Verifying - Enter pass phrase for privkey.pem:
#openssl req -new -key privkey.pem -out cert.csr
Enter pass phrase for privkey.pem:
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [GB]:cn
State or Province Name (full name) [Berkshire]:shanghai
Locality Name (eg, city) [Newbury]:shanghai
Organization Name (eg, company) [My Company Ltd]:abc
Organizational Unit Name (eg, section) []:tech
Common Name (eg, your name or your server's hostname) []:www.abc.com.cn
Email Address []:

Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:
#





#more nginx.conf

server {
        listen       443;
        server_name  www.abc.com.cn;
        ssl                  on;
        ssl_certificate      /usr/local/nginx/conf/UserCert.pem;
        ssl_certificate_key  /usr/local/nginx/conf/privkey.pem;

        .......
            proxy_connect_timeout 90;
            proxy_send_timeout    90;
            client_max_body_size  128k;
            client_body_buffer_size 128k;
        }


#./nginx
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP