I'd like to use nginx to act as a reverse proxy to secure my neo4j database REST api. Rather than use something like basic auth, what are the steps to configure a shared private certificate to be consumed by a node.js client. Is this the easiest way to secure my database REST API?
So is it just a matter of generating a certificate, configuring nginx to use it, and then adding it to my node.js app?
How do I configure nginx to only allow requests with that certificate or key? Is this all I have to do?
server {
listen 443;
ssl on;
ssl_certificate /etc/nginx/server.crt;
ssl_certificate_key /etc/nginx/server.key;
...
}
When generating the self-signed certificate and key on the server, do I copy both the cert and key to the client app server to be used by the node.js https client like so?
var options = {
host: 'encrypted.google.com',
port: 443,
path: '/',
method: 'GET',
key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem')
};
options.agent = new https.Agent(options);
var req = https.request(options, function(res) {
...
}