Skip to content

Instantly share code, notes, and snippets.

@simenbrekken
Created October 11, 2011 16:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simenbrekken/1278633 to your computer and use it in GitHub Desktop.
Save simenbrekken/1278633 to your computer and use it in GitHub Desktop.
app.requireSecureConnection = function(req, res, next) {
var err;
if (req.connection.encrypted === null) {
err = new Error('Access denied.');
}
next(err);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment