konfigurieren von https in sails.js

Ich versuche, einrichten von lokalen HTTPS-server für die Prüfung in Sails.js? Ich bin nicht in der Lage zu finden, alle Zeiger, wie man das in sails.js? Für express -,

var express = require('express');
var https = require('https');
var http = require('http');
var fs = require('fs');

//This line is from the Node.js HTTPS documentation.
var options = {
  key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
  cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem')
};

//Create a service (the app object is just a callback).
var app = express();

//Create an HTTP service.
http.createServer(app).listen(80);
//Create an HTTPS service identical to the HTTP service.
https.createServer(options, app).listen(443);

Jede Idee zu sails.js?

InformationsquelleAutor lostShip | 2013-07-19

Schreibe einen Kommentar