微信小程序部署

这里是nginx的相关配置


 server {
        listen       443 ssl;
        server_name  appxxx.metxx-rxx.com;

        ssl_certificate      C:/soft/nginx-1.18.0-windows-x64/conf/cert/scs1683506549075_applet.meter-run.com_server.crt;
        ssl_certificate_key  C:/soft/nginx-1.18.0-windows-x64/conf/cert/scs1683506549075_applet.meter-run.com_server.key;

	
        ssl_session_cache    shared:SSL:1m;
        ssl_session_timeout  5m;
    ssl_protocols TLSv1.1 TLSv1.2;

        ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;
    
        ssl_prefer_server_ciphers  on;

        location / {
       		 proxy_pass http://localhost:8049;
            #root   html;
            #index  index.html index.htm;
        }

    }

在开发管理中,找到开发设置,然后配置服务器的域名

微信小程序部署_第1张图片
微信小程序部署_第2张图片

你可能感兴趣的:(微信系列,服务器,java,微信小程序)