creo e lanciare un app come questo:Node.js + espresso: applicazione non si avvierà in ascolto sulla porta 80
express -s -t ejs
npm install express
npm install ejs
node app.js
e funziona (sulla porta 3000). Ma quando vado e cambiare la porta a 80, poi correre node app.js
Risulterà:
node.js:198
throw e; // process.nextTick error, or 'error' event on first tick
^
TypeError: Cannot call method 'getsockname' of null
at HTTPServer.address (net.js:746:23)
at Object.<anonymous> (/var/www/thorous/app.js:35:67)
at Module._compile (module.js:432:26)
at Object..js (module.js:450:10)
at Module.load (module.js:351:31)
at Function._load (module.js:310:12)
at Array.<anonymous> (module.js:470:10)
at EventEmitter._tickCallback (node.js:190:26)
Questo funziona anche sul mio portatile, ma non nel mio esempio Amazon EC2, in cui la porta 80 è aperta. Riesci a capire cosa c'è che non va. Qualche consiglio?
Questo è un messaggio di errore terribile. –