Quantcast
Channel: Tech Support Guy - Networking
Viewing all articles
Browse latest Browse all 4291

connection error

$
0
0
I'm trying to set up access to my self hosted site. I've set up a no-ip host pointing to my Public IP and then set up port forwarding to my machine hosting the site.

When navigating via the host set up in no-ip it says that it cant be connected. I am able to view the site via the localhost. The port forwarding that I have setup is pointing to port 80 and assigned to the machine with the web server.

i'm using UwAmp as the web server which is listening on port 80. The following is the entries that I have in the config

Code:

# VIRTUAL HOST

NameVirtualHost "*:80"
<VirtualHost *:80>
#UWAMP Generate Virtual Host
        DocumentRoot "{DOCUMENTPATH}/"
        Alias "/mysql/" "{PHPAPPS}/phpmyadmin/"
        Alias "/uwamp/" "{PHPAPPS}/uwamp/"
        <Directory "{PHPAPPS}/phpmyadmin/">
                AllowOverride All
                Options FollowSymLinks Includes Indexes
                Order deny,allow
                Deny from all
                Allow from 127.0.0.1 localhost
        </Directory>
        <Directory "{PHPAPPS}/uwamp/">
                AllowOverride All
                Options FollowSymLinks Includes Indexes
                Order deny,allow
                Deny from all
                Allow from 127.0.0.1 localhost
        </Directory>
        <Directory "{DOCUMENTPATH}/">
                AllowOverride All
                Options FollowSymLinks Indexes
                {ONLINE_MODE}
        </Directory>
</VirtualHost>
<VirtualHost *:80>
#UWAMP Generate Virtual Host
        DocumentRoot "C:/wordpress/"
        ServerName "www.mysite.com"
        ServerAlias "mysite"
        <Directory "C:/wordpress/">
                AllowOverride All
        </Directory>
</VirtualHost>

I'm not sure if I have my configuration set up wrong but any advice would be appreciated.

Attached Thumbnails
Click image for larger version

Name:	Capture.PNG
Views:	N/A
Size:	13.4 KB
ID:	230415  

Viewing all articles
Browse latest Browse all 4291

Trending Articles