node.js - 如何用express設(shè)置微信小程序的本地后臺(tái)服務(wù)器?
問(wèn)題描述
微信小程序的官方文檔上寫:發(fā)起的是https請(qǐng)求,且不能帶端口
1.如何讓express不監(jiān)聽(tīng)端口直接就能鏈接?2.微信小程序建立的鏈接一定是要https嗎?https要怎么弄?
問(wèn)題解答
回答1:1、nginx監(jiān)聽(tīng)本地express的端口3000;2、阿里云可以申請(qǐng)免費(fèi)的https證書
user www www;worker_processes 1;error_log /alidata/log/nginx/error.log crit;pid/alidata/server/nginx/logs/nginx.pid;#Specifies the value for maximum file descriptors that can be opened by this process. worker_rlimit_nofile 65535;events { use epoll; worker_connections 65535;}http { include mime.types; default_type application/octet-stream; #chaset gb2r312; server_names_hash_bucket_size 128; client_header_buffer_size 32k; large_client_header_buffers 4 32k; client_max_body_size 8m; sendfile on; tcp_nopush on; keepalive_timeout 60; tcp_nodelay on; fastcgi_connect_timeout 300; fastcgi_send_timeout 300; fastcgi_read_timeout 300; fastcgi_buffer_size 64k; fastcgi_buffers 4 64k; fastcgi_busy_buffers_size 128k; fastcgi_temp_file_write_size 128k; gzip on; gzip_min_length 1k; gzip_buffers 4 16k; gzip_http_version 1.0; gzip_comp_level 2; gzip_types text/plain application/x-javascript text/css application/xml; gzip_vary on; #limit_zone crawler $binary_remote_addr 10m; log_format ’$remote_addr - $remote_user [$time_local] '$request' ’ ’$status $body_bytes_sent '$http_referer' ’ ’'$http_user_agent' '$http_x_forwarded_for'’; include /alidata/server/nginx/conf/vhosts/*.conf; upstream nodejs {server 127.0.0.1:3000;} server { listen 443; server_name location; ssl on; root /alidata/www/api/; index index.html index.htm; ssl_certificate /alidata/server/nginx/cert/****************.pem; ssl_certificate_key /alidata/server/nginx/cert/****************.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;location / { proxy_pass http://nodejs; }location ~.*.(ico|jpe?g|png)$ {}# location / {# root html;#index index.html index.htm;# }}}
已經(jīng)貼出的我conf配置文件,可以參考,監(jiān)聽(tīng)3000端口以及配制證書都在這個(gè)文件里修改
下邊是阿里云申請(qǐng)免費(fèi)證書的地址https://common-buy.aliyun.com...
阿里云也有配置HTTPS的具體示例
相關(guān)文章:
1. macos - mac 重啟后 XAMPP下的apache無(wú)法啟動(dòng)2. css3 - 這個(gè)右下角折角用css怎么畫出來(lái)?3. mysql - eclispe無(wú)法打開(kāi)數(shù)據(jù)庫(kù)連接4. windows2003下的apache響應(yīng)時(shí)間特別長(zhǎng)?5. javascript - 在 model里定義的 引用表模型時(shí),model為undefined。6. 關(guān)于Java引用傳遞的一個(gè)困惑?7. java - 根據(jù)月份查詢多個(gè)表里的內(nèi)容怎么實(shí)現(xiàn)好?8. javascript - 一個(gè)關(guān)于客戶端和前端通信的疑惑?9. php - 一個(gè)操作請(qǐng)求多個(gè)服務(wù)如何保證數(shù)據(jù)的安全?10. javascript - webpack熱加載配置不生效
