Google-Cloud-Speech-Node-Socket-Playground
Google-Cloud-Speech-Node-Socket-Playground copied to clipboard
Local Preview on Mobile.
Trying to preview the local server on mobile via ssl. Tried to do this, but doesnt give me an https connection:
1: check pc ip with terminal: ifconfig / ipconfig getifaddr en2 2: change in node app.js line 101: server.listen(port, "192.168.178.32", 3: open on phone 192.168.178.32:1337
You should change the following code.
const server = require('http').createServer(app);
http→https
server.listen(port, "0.0.0.0"
and include the crt&key file.