Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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) {
  ...
}
share|improve this question
i think what you have here is server certificate configuration a quick search pointed me to here for setup you want – Raber Nov 14 '12 at 13:43

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.