Move SSL certs to live under api dir

This commit is contained in:
Andrew Stewart 2014-06-04 11:58:54 -07:00
parent 6bc1e9d944
commit 014574a545
4 changed files with 2 additions and 2 deletions

View File

@ -66,8 +66,8 @@ API.prototype.defaults = {
auth: false,
CORS: '',
ssl: {
key: path.normalize(__dirname + "/ssl/server.key"),
cert: path.normalize(__dirname + "/ssl/server.crt")
key: path.normalize(__dirname + "/api/ssl/server.key"),
cert: path.normalize(__dirname + "/api/ssl/server.crt")
}
};