sebauer / if-this-then-node

An extendible NodeJS app to receive actions from IFTTT (If This Then That).
http://sebauer.github.io/if-this-then-node/
81 stars 12 forks source link

Cannot add IFTTT channel #5

Closed jamborta closed 9 years ago

jamborta commented 9 years ago

Hi Sebastian,

I wanted to try out your plugin to setup ifttt commands to control some limitless led bulbs. I have installed it and started up the server, seems it is all up and running, but when I want to activate the channel in ifttt, it just times out.

I have it running here: http://212.56.75.189:1337/

did I miss something to setup?

many thanks

sebauer commented 9 years ago

Hey there!

Yes, unfortunately IFTTT expects WordPress to be running on port 80 and does not accept anything else. So either you do a remapping while port-forwarding in your router (external port 80 goes to port 1337 on your system) or change the port, if-this-then-node is running on to 80. You'll find that in the following line: https://github.com/sebauer/if-this-then-node/blob/master/server.js#L63

But I would suggest doing the first option, because I suspect you have a port forwarding anyways. If not you should consider that because I would not recommend to have your complete system exposed to the outside world.

jamborta commented 9 years ago

thank you. I'll try that.