apache - WAMP - World Wide Access -


i have installed wamp on computer running windows 7. apache running on port 80. searching here , there , has own solution. none of fulfil requirement.

information:

local ip: 192.168.15.52 external ip: 139.190.233.170 (collected whatsmyip.org) 

changed httpd.conf file:

servername 139.190.233.170:80  documentroot "c:/wamp/www" <directory "c:/wamp/www">     options indexes followsymlinks     allowoverride      order deny,allow      allow </directory> 

i have added rule port 80 in windows firewall , forward port lan ip. here pic:

my router config

nothing happens after that. clicking "put online" , watching go green, nothing happens. can access www directory either localhost ip address (127.0.0.1) or lan ip address (192.168.15.152).

questions:

is possible put wamp world wide access? if possible, how?

i have been searching around none of them works. have searched so:

unable access wamp server outside computer

how can put wamp online access?

e.t.c

some external sites:

http://www.computerforums.org/forums/server-administration/wamp-server-wont-work-outside-lan-help-207071.html

http://answers.yahoo.com/question/index?qid=20091005091249aaqrhxr

http://wordpress.org/support/topic/problem-accessing-wp-externally-using-wamp

http://wordpress.org/support/topic/self-hosted-wp-wamp-server-not-connecting-externally

http://webhosting.bigresource.com/wamp-access-website-with-my-wan-ip-pg1bh4bj.html

http://guides.jlbn.net/setaccess/setaccess1.html

it possible, yes.

i suggest momentarily disabling firewalls, trying connection , seeing if works. if does, know it's firewall - turn windows 1 on , other 1 one eliminate them. if doesn't, know have issues.

remember run httpd -t command prompt verify config free of errors , of course make sure restart apache , w green in task bar. make sure restarting, - times things mail servers (hmailserver particularly aware of) can stop happening. in case need restart wampapache service services control panel (start > services.msc).

here's info though, might better setting dynamic dns. use dyndns , have following vhosts conf:

<virtualhost *:80>   servername mysite.dyndns.org    directoryindex index.html index.php   documentroot /home/mysite/   <directory /home/mysite/>     allowoverride     allow   </directory>    # logging stuff cut out here  </virtualhost> 

put in mysite.conf inside c:/wamp/bin/apache/apache2.2.21/conf/virtual. mysite.dyndns.org host have set @ dyndns. finally, make virtual hosts work, add httpd.conf:

namevirtualhost *:80 include "c:/wamp/bin/apache/apache2.2.21/conf/virtual/*.conf" 

now, if still doesn't work you have other issues. can telnet on port 80 above address? see above firewall issues.


Comments

Popular posts from this blog

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

html - How to style widget with post count different than without post count -

url rewriting - How to redirect a http POST with urlrewritefilter -