Hello
Im running a Linode512 with a LAMP stack and two domains.
Im doing a project where i need to get some JSON data from a PHP script to an Arduino micro-controller. The Arduino does not support DNS so i have to access the php via the IP address of my linode. But when i try to access the ip the only thing i get is a "Restricted Area" popup in my browser.
Is there some way of pointing that IP to the root of the Linode or some other workaround?
Im new and currently learning, so please bare with me

All help is much appreciated!
Each domain is set up like this:
/etc/apache2/sites-available/domain.one
<VirtualHost *:80>
ServerAdmin
email@domainone.com ServerName domainone.com
ServerAlias
www.domainone.com DocumentRoot /srv/www/domainone.com/public_html/
ErrorLog /srv/www/domainone.com/logs/error.log
CustomLog /srv/www/domainone.com/logs/access.log combined
</VirtualHost>
/etc/apache2/sites-available/domaintwo.com
<VirtualHost *:80>
ServerAdmin
email@domaintwo.com ServerName domaintwo.com
ServerAlias
www.domaintwo.com DocumentRoot /srv/www/domaintwo.com/public_html/
ErrorLog /srv/www/domaintwo.com/logs/error.log
CustomLog /srv/www/domaintwo.com/logs/access.log combined
</VirtualHost>