Reputation: 15297
I have downloaded xampp and want to make some modifications in php system. My question is about, if it is possible to make xampp inaccessible from network (network administration does not allow to provide any services in net) ? It would be nice if you could provide specific steps/folders/variables to change.
I work with ubuntu on xampp 1.8.3
Thanks
Upvotes: 1
Views: 359
Reputation: 143906
You can make xampp only bind to localhost as opposed to all interfaces, thus making it inaccessible from the network. In the httpd.conf
file (I think in ubuntu, it's actually /opt/lampp/etc/extra/httpd-xampp.conf
) where it says:
Listen 80
change it to:
Listen 127.0.0.1:80
Upvotes: 1