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
I'm not sure if I have my configuration set up wrong but any advice would be appreciated.
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>