Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 347 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 347 Bytes

restify-https

A simple Restify plugin that requires requests to be made via HTTPS only.

Example:

var server = require('restify'),
    https = require('restify-https');

server.use(https({ override: false }));

For more information using custom plugins, please refer to the Restify docs.