How To Make Xampp Secure

StreetMoney

Member
Jul 19, 2012
417
8
What i really want is to secure my xampp from anyone else i want it to be like this if someone trys to go in it

Access forbidden!



New XAMPP security concept:
Access to the requested object is only available from the local network.
This setting can be configured in the file "httpd-xampp.conf".


If you think this is a server error, please contact the webmaster.
Error 403

What Do i do to make this show for other people?
 

Aaron11

Member
Aug 27, 2011
144
6
Goto C:\xampp\apache\conf\extra\ then open httpd-xampp and search for:

PHP:
#
#
# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampp|phpmyadmin|security|licenses|webalizer|server-status|server-info))">
    Order deny, allow
    Allow from all
 
    ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var
</LocationMatch>

And replace with:

PHP:
#
# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampp|security|licenses|webalizer|server-status|server-info))">
    Order deny,allow
    Deny from all
 
    ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var
</LocationMatch>
 

Users who are viewing this thread

Top