博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【转】Linux下nginx配置https协议访问的方法
阅读量:5055 次
发布时间:2019-06-12

本文共 2274 字,大约阅读时间需要 7 分钟。

一、配置nginx支持https协议访问,需要在编译安装nginx的时候添加相应的模块--with-http_ssl_module

查看nginx编译参数:/usr/local/nginx/sbin/nginx -V

如下所示:

configure arguments: --prefix=/usr/local/nginx --with-google_perftools_module --without-http_memcached_module --user=www --group=www --with-http_stub_status_module --with-http_sub_module --with-http_ssl_module --with-http_gzip_static_module --with-openssl=/usr/local/src/openssl-1.0.1h --with-zlib=/usr/local/src/zlib-1.2.8 --with-pcre=/usr/local/src/pcre-8.35

如果没有--with-http_gzip_static_module这个参数,需要重新编辑nginx

二、防火墙开启https协议默认端口443

vi /etc/sysconfig/iptables #编辑防火墙配置文件,添加以下代码

-A INPUT -m state --state NEW -m tcp -p tcp --dport 443 -j ACCEPT

:wq! #保存退出

service iptables restart #重启防火墙

三、创建https证书

确保机器上安装了openssl和openssl-devel

yum install openssl openssl-devel #CentOS使用yum命令安装

mkdir /usr/local/nginx/conf/ssl #创建证书存放目录

cd /usr/local/nginx/conf/ssl #进入目录

创建服务器私钥:openssl genrsa -des3 -out server.key 1024 #根据提示输入证书口令

创建签名请求的证书(CSR):openssl req -new -key server.key -out server.csr #输入上面设置的口令

#根据提示输入相应的信息

Country Name (2 letter code) [XX]:cn #国家

State or Province Name (full name) []:zhejiang #省份

Locality Name (eg, city) [Default City]:hangzhou #城市

Organization Name (eg, company) [Default Company Ltd]:osyunwei #公司

Organizational Unit Name (eg, section) []:sys #部门

Common Name (eg, your name or your server's hostname) []:osyunwei #主机名称

Email Address []:[email protected] #邮箱

Please enter the following 'extra' attributes

to be sent with your certificate request

A challenge password []:123456 #证书请求密钥,CA读取证书的时候需要输入密码

An optional company name []:osyunwei #公司名称,CA读取证书的时候需要输入密码

openssl rsa -in server.key -out server_nopassword.key #对key进行解密

openssl x509 -req -days 365 -in server.csr -signkey server_nopassword.key -out server.crt

#标记证书使用上述私钥和CSR

四、修改nginx配置文件,加载ssl证书

vi /usr/local/nginx/conf/nginx.conf #编辑

listen 80;

listen 443;

ssl on;

ssl_certificate /usr/local/nginx/conf/ssl/server.crt;

ssl_certificate_key /usr/local/nginx/conf/ssl/server_nopassword.key;

fastcgi_param HTTPS $https if_not_empty; #有https协议时自动使用https,否则忽略这个参数。

:wq! #保存退出

service nginx restart #重启nginx

rewrite ^(.*) https://www.osyunwei.com$1 permanent; #可以把http协议重定向到https上面

使用https协议打开网址,如下图所示:

至此,Linux下nginx配置https协议访问完成。

转载于:https://www.cnblogs.com/dsc65749924/p/5857090.html

你可能感兴趣的文章
动手动脑
查看>>
NFS服务
查看>>
Webstorm 添加新建.vue文件功能并支持高亮vue语法和es6语法
查看>>
datatable 使用详细说明
查看>>
阿里云Windows 2008一键安装包配置php web环境图文安装教程(IIS+Php+Mysql)
查看>>
2017.12.3 软件工程-------第三章 需求分析(复习)
查看>>
【进程线程与同步】5.4 System.Threading.Interlocked 为多个线程共享的变量提供原子操作...
查看>>
VS编译后事件
查看>>
nginx搭建http和rtmp协议的流媒体服务器
查看>>
ES6学习笔记一
查看>>
zoj1455
查看>>
overridePendingTransition动画只设置一个
查看>>
WC2019 T1 数树
查看>>
Windows下pipenv将虚环境文件的位置设置在项目根目录下
查看>>
docker run -it centos /bin/bash 后面的 bin/bash的作用
查看>>
理解 JavaScript 中的 for…of 循环
查看>>
[译]GPUView
查看>>
python优雅编程之旅
查看>>
LintCode: Binary Tree Preorder Traversal
查看>>
CheeseZH: Stanford University: Machine Learning Ex1:Linear Regression
查看>>