Nginx安装SSL的详细教程
下面是小编给大家分享的一篇Nginx安装SSL的详细教程,感兴趣的朋友跟小编一起来了解一下吧!
1.安装带有ssl模块的 nginx
wget http://nginx.org/download/nginx-0.8.52.tar.gz
tar zxvf nginx-0.8.52.tar.gz
chown root:root nginx-0.8.52 -R
apt-get install libpcre3 libpcre3-dev
apt-get install openssl
apt-get install libssl-dev
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_realip_module
make
make install
2.配置nginx 配置文件
ssl_certificate /etc/nginx/nginx_pas/*.crt;
ssl_certificate_key /etc/nginx/nginx_pas/*.key;
3. 配置nginx的conf ,所有都要求访问https
location / {
rewrite ^/(.*) https://*.com/$1 permanent ;
#root /var/www/nginx-default;
#index index.html index.htm;
}
以上就是关于Nginx安装SSL的详细教程了,想必都了解了吧,更多相关内容请继续关注爱站技术频道。