ensure-https

0.2.1 • Public • Published

Ensure-HTTPS

This is a little utility package that creates an HTTP-Server that directly redirects to an HTTPS server. We use this, because our entire site is running under HTTPS. Of course when users type an address into their browser, or external people link to us, they often do not specify the protocol so HTTP is used. So we use this little server to redirect every HTTP URL to its HTTPS equivalent.

Usage

var ensure=require('ensure-https');
var options={
  'forceHost':undefined,   // If this is set then the destination URL is forced to this hostname
  'host':'localhost',      // This is the default host to use (for HTTP/0.9 clients) (default: localhost)
  'sslHost':443,           // This is the port of your HTTPS server if it is not 443 (default: 443)
  'statusCode':301         // This is the HTTP Status-Code to use                    (defualt: 301)
};
var server=ensure.createServer(options);
server.listen(80);

License

MIT License

Copyright (C) 2012 YOUSURE Tarifvergleich GmbH

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i ensure-https

Weekly Downloads

2

Version

0.2.1

License

none

Last publish

Collaborators

  • med-lazhari