XAMPP Use IP address rather than 127.0.0.1 or localhost

xampp

I will need to access the files on the apache server using an Android phone so using localhost or 127.0.0.1 will not work. I know need to make changes to the httpd-xampp.conf file but amen't sure what changes need to be done.

EDIT: I get this screen when type in my IP addy
enter image description here

This where I think needs to be changed to allow me to use my IP address

# Close XAMPP security section here 
<LocationMatch "^/(?i:(?:security))">
Order deny,allow
Deny from all
Allow from ::1 127.0.0.0/8 
ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var
</LocationMatch>

# Close XAMPP sites here
<LocationMatch "^/(?i:(?:xampp|licenses|phpmyadmin|webalizer|server-status|server-info))">
Order deny,allow
Deny from all
Allow from ::1 127.0.0.0/8 
ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var

Best Answer

You can change line where it says Listen 127.0.0.1:80 to Listen 80. If you have problem let us know.