小程序配置https
Posted maoriaty
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序配置https相关的知识,希望对你有一定的参考价值。
问题:
1. 微信开发者工具中,通过不检验域名可以访问,手机预览访问不了的
-- 添加配置https的域名访问
申请https证书:
阿里云购买免费证书:
控制台-安全(云盾)-CA证书服务-购买-一个域名&Symantec-购买
nginx配置https:
#ci server=======start server { listen 80; #listen 443 ssl; server_name ci.mag998.com; root /mnt/html/ci; index index.php index.html index.htm; #ssl_certificate /usr/local/nginx/cert/214130435490250.pem; #ssl_certificate_key /usr/local/nginx/cert/214130435490250.key; location / { if (!-e $request_filename){ rewrite ^/(.*) /index.php last; } } location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param SCRIPT_NAME $fastcgi_script_name; include fastcgi_params; } location ~ /\.ht { deny all; } } #ci end============
小程序后台:
设置-开发设置-服务器域名-添加域名
以上是关于小程序配置https的主要内容,如果未能解决你的问题,请参考以下文章