node-http-server – Diff between revs 12 and 13

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 12 Rev 13
Line 99... Line 99...
99 ).listen(config.net.port, config.net.address, () => { 99 ).listen(config.net.port, config.net.address, () => {
100 log.info('HTTP Server accessible at: http://' + 100 log.info('HTTP Server accessible at: http://' +
101 config.net.address + 101 config.net.address +
102 ':' + 102 ':' +
103 config.net.port + 103 config.net.port +
104 '.' + 104 ' and serving files from directory: ' +
105 root 105 root
106 ); 106 );
107 }); 107 });
Line 108... Line 108...
108   108  
Line 137... Line 137...
137 ).listen(config.ssl.port, config.ssl.address, () => { 137 ).listen(config.ssl.port, config.ssl.address, () => {
138 log.info('HTTPs Server accessible at: https://' + 138 log.info('HTTPs Server accessible at: https://' +
139 config.ssl.address + 139 config.ssl.address +
140 ':' + 140 ':' +
141 config.ssl.port + 141 config.ssl.port +
142 '.' + 142 ' and serving files from directory: ' +
143 root 143 root
144 ); 144 );
145 }) 145 })
146 } 146 }
147 ); 147 );