I am working on one web application. The project is located on my Linux server, that is, on the server. We remotely access this machine from Windows.
I use xdebug for debugging along with the Eclipse PDT.
xdebug is installed on my server. The configuration below is installed in the file php.ini(which is located on the server):
xdebug.remote_enable=1
xdebug.remote_host=10.88.36.1
xdebug.remote_port=9000
xdebug.remote_handler="dbgp"
xdebug.remote_log = /tmp/xdebug.log
After executing the above configuration parameter in php.ini for xdebug, it allows only one host (i.e. 10.88.36.1)
I want to allow multiple hosts. I know that in zend debugger there is a configuration parameter parameter that does this, e.g.
zend_debugger.allow_hosts=10.88.36.28, 10.88.36.1
Is there an equivalent option for xdebug so that I can allow multiple hosts to access the server remotely?