Skip to content

Commit

Permalink
[fix] Invald paths
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandro committed Jul 12, 2012
1 parent 6515688 commit 8e6bb20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proxy/proxy.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ var Logger = require('bunyan')


try { try {
var ssl = { var ssl = {
key: fs.readFileSync(config.ssl_key_file, 'utf8'), key: fs.readFileSync(config.opt.ssl_key_file, 'utf8'),
cert: fs.readFileSync(config.ssl_cert_file, 'utf8') cert: fs.readFileSync(config.opt.ssl_cert_file, 'utf8')
}; };
} catch (excp) { } catch (excp) {
https = false; https = false;
Expand Down

0 comments on commit 8e6bb20

Please sign in to comment.