Hi All
I'm trying to create a python-based website using wsgi, following instructions such as these.
This all works just fine as long as I'm accessing the website from the same PC on which it is hosted. However, when I try to access it from another PC on the same network (there shouldn't be any firewall between the two), it tells me the host can't be found. I'm using port 8080 for this.
I have googled a bit but i think I don't know if I am even looking in the right places.
The following I want to achieve and I don't even know if it is possible.
If I write a web application I can view in my web-browser (on the localhost).
I have an Ubuntu 10.04 server that already has apache and wsgi working. I also have a python script that works just fine using the make_server command:
if __name__ == '__main__':
from wsgiref.simple_server import make_server
srv = make_server('', 8080, display_status)
srv.serve_forever()
Now I would like to have the page always active without having to run the script manually.
I had a lighttpd server which works normally. I can access this website from outside(non-localhost) via http://vm.aaa.com:8080. Let's just assume that it's a simple static website, without php or mysql.
Now I want to copy this website as a test one(using another port) in the same machine. And I do not want to use virtual host.
On the network firewall, I opened up port 80 and forwarded it to the Windows Server 2008 R2 running IIS 7.5. Port 80 is open in the Windows firewall.
On the LAN, the website is accessible without any trouble.
I have Linux VPS.
Configuration
Linux CentOS with cPanel Default port :80
Servers running
Apache for PHP (default in cPanel) Tomcat 5.5.33
I have a only 1 IP alloted for it.
I am trying to forward port 8080 thru my modem but i have not been successful.
Hi i have hosted a jsp page in my Apache Tomcat 7 server in Windows 7.
My computer is connected to network. Initially that page was not accessed from other computer in the network. Later i added the port 8080 to firewall Inbound Rules it worked.
The real problem is,
I have a VM in which Linux is installed and TOmcat is running in it. I have hosted a page in it. say hello.jsp.
I bought a domaine name and made a website for my personal website. The website is currently a custom Mongoose embedded server that loads HTML pages and shoots them when specific URLS are asked. My website works perfectly on my localhost on my port 8080. No problem there.
The problem is with my domain name.