• Wamp server to public?
    3 replies, posted
Hey, I am running wamp server to test my php files and website, and i was wondering is there a way to make it accessible to public or at least 1 specific person?
Are you running this on your local PC? If it is then you'll probably have to set up port forwarding with your router. You will need to right click the wamp icon and click "make available to public" Try google for more information.
[QUOTE=asciid;36758572]Are you running this on your local PC? If it is then you'll probably have to set up port forwarding with your router. You will need to right click the wamp icon and click "make available to public" Try google for more information.[/QUOTE] You mean "Put Online", right? @arleitiss You can allow individual IPs by editing Apache -> httpd.conf, and look for "# onlineoffline tag - don't remove". Then just put what you want to allow just before the </Directory>, e.g. I have this to allow access from 192.168.1.*: [code] # # Controls who can get stuff from this server. # # onlineoffline tag - don't remove Order Deny,Allow Deny from all Allow from 127.0.0.1 # allow stuff on my network Allow from 192.168.1 </Directory>[/code] Just don't edit the already existing condition there because that's used by "Put Online"/"Put Offline". And I'm assuming you're aware of how everything has no password in WAMP by default.
[QUOTE=a2h;36759923]You mean "Put Online", right? @arleitiss You can allow individual IPs by editing Apache -> httpd.conf, and look for "# onlineoffline tag - don't remove". Then just put what you want to allow just before the </Directory>, e.g. I have this to allow access from 192.168.1.*: [code] # # Controls who can get stuff from this server. # # onlineoffline tag - don't remove Order Deny,Allow Deny from all Allow from 127.0.0.1 # allow stuff on my network Allow from 192.168.1 </Directory>[/code] Just don't edit the already existing condition there because that's used by "Put Online"/"Put Offline". And I'm assuming you're aware of how everything has no password in WAMP by default.[/QUOTE] Thanks, yes I am aware of that, it's just to let leader of my team view and see how stuff works.
Sorry, you need to Log In to post a reply to this thread.