我向我的nodeJS服务器启用https请求。但我想使用与从8080端口的http请求接收的相同路由到使用该443端口的https。
http://api.myapp.com:8080/api/waitlist/join成功 https://api.myapp.com:443/api/waitlist/join并非{} 我在代码中错过了什么来使用与“应用程序”相同的路线?对于httpsServer?
var fs = require('fs');
var https = require('https');
var express = require('express'); // call express
var app = express(); // define our app using express
var bodyParser = require('body-parser');
var mongoose = require('mongoose');
var cors = require('cors');
var config = require('./config');
// Configure app to use bodyParser()
[...]
// Configure the CORS rights
app.use(cors());
// Enable https
var privateKey = fs.readFileSync('key.pem', 'utf8');
var certificate = fs.readFileSync('cert.pem', 'utf8');
var credentials = {
key: privateKey,
cert: certificate
};
var httpsServer = https.createServer(credentials, app);
// Configure app port
var port = process.env.PORT || config.app.port; // 8080
// Configure database connection
[...]
// ROUTES FOR OUR API
// =============================================================================
// Create our router
var router = express.Router();
// Middleware to use for all requests
router.use(function(req, res, next) {
// do logging
console.log('>>>> Something is happening. Here is the path: '+req.path);
next();
});
// WAITLIST ROUTES ---------------------------------------
// (POST) Create Email Account --> Join the waitList
router.route('/waitlist/join').post(waitlistCtrl.joinWaitlist);
// And a lot of routes...
// REGISTER OUR ROUTES -------------------------------
// All of our routes will be prefixed with /api
app.use('/api', router);
// START THE SERVER
// =============================================================================
app.listen(port);
httpsServer.listen(443);
谢谢!
答案 0 :(得分:8)
在我自己的具有类似需求的项目中使用API docs .listen
并查看您的代码,我认为应该有两个快速更改:
1)根据您的其他要求将var http = require('http');
添加到顶部。
2)将应用的最后两行更改为:
// START THE SERVER
// =============================================================================
http.createServer(app).listen(port);
https.createServer(credentials, app).listen(443);
(如果此方法有效,您也可以删除对httpsServer
的引用。)
答案 1 :(得分:3)
说实话,除非你有充分的理由不考虑将网络服务器(NGINX)放在你的节点应用程序或负载均衡器前面。
这有很多方面的帮助,其中最重要的是你可以在那里终止HTTPS请求并让你的节点应用不关心。