nginx配置aliyun https
程序员文章站
2022-03-21 12:06:36
...
server { listen 443; server_name www.goforit.com goforit.com; ssl on; ssl_certificate cert/goforit.pem; ssl_certificate_key cert/goforit.key; ssl_session_timeout 5m; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_prefer_server_ciphers on; if ( $host != 'www.goforit.com' ){ rewrite ^/(.*)$ $1 permanent; } access_log logs/access_www.log main; location / { root /usr/local/data/www/www; index index.php index.html; } error_page 404 /missing.html; location ~ /\.ht { deny all; } location ~ \.php$ { root /usr/local/data/www/www; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /usr/local/data/www/www$fastcgi_script_name; include fastcgi_params; } }
以上就是nginx配置aliyun https的详细内容,更多请关注其它相关文章!
上一篇: 3D翻牌的10篇内容推荐
下一篇: html meta标签怎么用
推荐阅读
-
.Net Core和jexus配置HTTPS服务方法
-
在CentOS上配置Nginx+Gunicorn+Python+Flask环境的教程
-
Nginx搭建HTTPS服务器和强制使用HTTPS访问的方法
-
LNMP环境下,解决项目缓冲慢、502以及配置https的问题
-
Nginx DNS resolver配置实例
-
分析nginx日志并屏蔽采集者ip(nginx屏蔽ip配置实例)
-
nginx跨域解决方案(教你nginx如何配置跨域)
-
nginx配置反向代理和负载均衡(nginx功能介绍和使用)
-
在阿里云服务器上配置CentOS+Nginx+Python+Flask环境
-
nginx配置反向代理和负载均衡(nginx功能介绍和使用)