Page 1 of 1

Remote Access for Clients (please help newbie understand)

PostPosted: 13. April 2010 17:04
by matius
Hey guys,

How would I go about setting it up for clients to access my local development server so they can review/approve certain checkpoints. I know you can access via IP address on a local network, but how to configure for outside safely I'm at a loss. I also understand that this might not be specific to XAMPP, but I'm using XAMPP and need some general direction.

Any help is a absolutely appreciated.

M

Re: Remote Access for Clients (please help newbie understand)

PostPosted: 13. April 2010 19:28
by WilliL
you may configurate access by a file in root directory

Filename must be named '.htaccess' (dot htaccess)
In this exampel only user with IP 22.111.22.222 will get access all other one will get access denied.
Code: Select all
order deny,allow
allow from 22.111.22.222
deny from all

There are lot information in net

Re: Remote Access for Clients (please help newbie understand)

PostPosted: 14. April 2010 01:17
by matius
I see, thanks man --