Currently am implementing a video conferencing application using Tokbox . Sample server and web client is working in my local-host .But when i tried to run the PHP tokbox server on AWS EC2 instance .The server is not working properly.
I am using the following run-demo file to start the server in AWS.
export TOKBOX_API_KEY=**********
export TOKBOX_SECRET=**********************
if [ -d "storage" ]
then
rm -rf storage/
fi
php -S ec2-34-240-136-230.eu-west-1.compute.amazonaws.com:8083 -t web web/index.php
I am geting the alerts "Server started" ,Listening on ec2-34-240-136-230.eu-west-1.compute.amazonaws.com:8083"
after executing the "run-demo" commands. But when i took the URL http://ec2-34-240-136-230.eu-west-1.compute.amazonaws.com:8083/room/session
not getting any json result from server.