nginx 使用Https自建私有证书(类似12306发的证书)

2、key文件导出

把后缀 pem 改成 key 即可,但是没测试过 不改行不行

二、nginx 支持https搭建(centos)

=========================

参考网址https://blog.csdn.net/springlustre/article/details/75173653

1、首先检查是否安装了pcre,openssl,gzip等

[root@iZ286yyopd3Z nginx]# rpm -qa | grep “pcre”

pcre-8.32-15.el7.x86_64

pcre-devel-8.32-15.el7.x86_64

[root@iZ286yyopd3Z nginx]# rpm -qa | grep “openssl”

openssl-1.0.1e-34.el7_0.7.x86_64

openssl-libs-1.0.1e-34.el7_0.7.x86_64

[root@iZ286yyopd3Z nginx]# rpm -qa | grep “gzip”

gzip-1.5-7.el7.x86_64

如上显示则为已安装,否则使用yum进行安装。命令分别是:

yum install pcre*

yum install openssl*

yum install zlib

yum install zlib-devel

2、下载ngix

[root@iZ286yyopd3Z nginx]# wget http://nginx.org/download/nginx-1.9.9.tar.gz

–2017-07-15 16:16:05--  http://nginx.org/download/nginx-1.9.9.tar.gz

Resolving nginx.org (nginx.org)… 206.251.255.63, 95.211.80.227, 2606:7100:1:69::3f, …

Connecting to nginx.org (nginx.org)|206.251.255.63|:80… connected.

HTTP request sent, awaiting response… 200 OK

Length: 887908 (867K) [application/octet-stream]

Saving to: ‘nginx-1.9.9.tar.gz’

100%[=================================================================================================================================>] 887,908     73.0KB/s   in 14s

2017-07-15 16:16:19 (63.6 KB/s) - ‘nginx-1.9.9.tar.gz’ saved [887908/887908]

3、解压

root@iZ286yyopd3Z nginx]# tar -zxvf nginx-1.9.9.tar.gz

4、安装

[root@iZ286yyopd3Z nginx-1.9.9]# ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module && make && make install

5、启动

安装默认在usr/local/nginx  在该目录输入

[root@iZ286yyopd3Z nginx]# ./sbin/nginx

重启 ./sbin/nginx -s reload

查看

[root@iZ286yyopd3Z nginx]# ps -ef | grep nginx

root     16200     1  0 17:31 ?        00:00:00 nginx: master process ./sbin/nginx

nobody   16201 16200  0 17:31 ?        00:00:00 nginx: worker process

root     25771 24255  0 17:32 pts/1    00:00:00 grep --color=auto ngin

#user nobody;

worker_processes 1;

#error_log logs/error.log;

#error_log logs/error.log notice;

#error_log logs/error.log info;

#pid logs/nginx.pid;

events {

worker_connections 1024;

}

http {

include mime.types;

default_type application/octet-stream;

#log_format main '$remote_addr - r e m o t e u s e r [ remote_user [ remoteuser[time_local] “$request” ’

'$status b o d y b y t e s s e n t " body_bytes_sent " bodybytessent"http_referer" ’

‘“ h t t p u s e r a g e n t " " http_user_agent" " httpuseragent""http_x_forwarded_for”’;

#access_log logs/access.log main;

sendfile on;

#tcp_nopush on;

#keepalive_timeout 0;

keepalive_timeout 65;

#gzip on;

server {

listen 80;

server_name localhost;

#charset koi8-r;

#access_log logs/host.access.log main;

location / {

root html;

index index.html index.htm;

}

#error_page 404 /404.html;

redirect server error pages to the static page /50x.html

error_page 500 502 503 504 /50x.html;

location = /50x.html {

root html;

}

proxy the PHP scripts to Apache listening on 127.0.0.1:80

#location ~ .php$ {

proxy_pass http://127.0.0.1;

#}

pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

#location ~ .php$ {

root html;

fastcgi_pass 127.0.0.1:9000;

fastcgi_index index.php;

fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;

include fastcgi_params;

#}

deny access to .htaccess files, if Apache’s document root

concurs with nginx’s one

#location ~ /.ht {

deny all;

#}

}

another virtual host using mix of IP-, name-, and port-based configuration

#server {

listen 8000;

listen somename:8080;

server_name somename alias another.alias;

location / {

root html;

index index.html index.htm;

}

#}

HTTPS server

server {

listen 443 ssl;

server_name localhost;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值