try demo at http://99.4.70.120/yalloo --------------------------------------------------------------------------- to run this project locally you need to install and configure the following --------------------------------------------------------------------------- 1. install nginx nano /etc/nginx/sites-enabled/default copy and paste this /* server { listen 80; root /path/to/yalloo; server_name YourPublicIPAddress; index index.html index.php index.htm index.nginx-debian.html; location / { proxy_pass http://0.0.0.0:8080; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; } location /yalloo { proxy_pass http://0.0.0.0:8081; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; } } */ --------------------------------------------------------------------------- 2. install mysql server create user 'aj' with password 'password' create database 'yalloo' --------------------------------------------------------------------------- 3. install npm server --------------------------------------------------------------------------- 4. install php server --------------------------------------------------------------------------- 5. cd path/to/yalloo --------------------------------------------------------------------------- 6. php -S locaclhost:8081 --------------------------------------------------------------------------- 7. node path/to/yalloo/server.js --------------------------------------------------------------------------- goto http://YourPublicIPAddress/yalloo or http://0.0.0.0:8081/yalloo ---------------------------------------------------------------------------