How to configure http_listener to listen on my ip address so other computers on the network can send requests to the server ?
http_listener listener(L"http://localhsot:9000"); // not working
http_listener listener(L"http://0.0.0.0:9000"); // run time error
http_listener listener(L"http://*:9000"); // run time error
I want to use c++ rest sdk as a server on my local network .
https://casablanca.codeplex.com/discussions/478976
HENRYTM Answer
Hi I also encountered this problem. You can solve this by using nginx as proxy on linux. This can also add https feature to your server. Here is a small version of the needed nginx config file:
This script redirects all traffic to 12345. Now you just have to listen to
Don't forget to the "support" calls. Cheers, Henry