1. 首页
  2. 考试认证
  3. 其它
  4. express secure only 在express中强制执行安全连接

express secure only 在express中强制执行安全连接

上传者: 2024-10-13 17:19:25上传 ZIP文件 4.75KB 热度 1次
仅快速安全Express中间件可确保您通过HTTPS运行。特征:将请求重定向到其HTTPS等效项var express = require ( 'express' ) , tsecure = require ( 'express-secure-only' ) , tapp = express ( ) ; app . use ( secure ( ) ) ; app . get ( '/' , function ( req , res ) { tres . status ( 200 ) . send ( 'Hello world.' ) ; } ) ; app . listen ( ) ;使用自定义主机或端口: app . use ( secure ( { host : 'localhost:3001' } ) ) ;
用户评论