I'm having an issue getting vhosts to work on Apache 2.2, Debian 6. I have two VirtualHosts, one on port 80 and one on port 8888. The port 80 one has been created automatically by DirectAdmin, the 8888 is a custom one.
I'm trying to implement http digest authentication on part of a local domain. I'm using MAMP on Mac OSX Lion. MAMP uses port 8888 so I can navigate to my domain either at http://localhost:8888/myDomain or http://127.0.0.1:8888/myDomain. Both of these work fine for the non-authenticated sections of the domain. However, if I navigate to the address that is protected something weird happens.
I've a domain on which I'm running two different web applications at different ports.
A Java web application on example:8888/foo
A PHP website on example:8080/bar
The requirement is, if an user tries to access the root of example:8888 or example:8080, then the user should be redirected to example:8888/foo.
How can I achieve this requirement?
Question on Virtual Box 4.1.8
So, i have Ubuntu 10.10 as host machine and Windows Xp as guest machine.
On host machine there is tomcat with web app running on port 8888.
When i am in guest machine i type in browser:
http://10.0.2.2:8888/Something.html and it works.
In order to debug maas, I ran the following command:
$ cd /usr/share/pyshared/maas
$ sudo python manage.py runserver (IP):8888 --settings=maas.settings
After that, I typed the url 'http://(IP):8888/MAAS/' in a firefox browser.
Then the following error is shown:
A server error occurred.
I'm trying to use an Apache proxy as a front-end for a service running on a different server in my infrastructure. Let's call them proxy.example.com and service.example.com.
Proxy.example.com is listening on port 80, but service.example.com is listening on port 8888.
I have a apache server that will reveive traffic on port 80 and 443 from a Load Balancer.
This apache server need to pass all that traffic to a gateway (ip adress).
I have a server with Zentyal 3.03(ubuntu 12.04) lts. It has 3 lan card.
eth0 - dhcp fast internet (i pay for it)
eth1 - static slow internet (it's free for the school)
eth2 - LAN
I can reach the server with ssh, but I can't reach a LAN server from outside.
I have a process running on my Ubuntu 12.04 server that insists on binding to a public IP address. I only want it accessible from localhost, and NOT the outside world. I've been trying to work out a way to forward 1.2.3.4:8888 to 127.0.0.1:8888. I saw something about iptables not wanting to forward connections to loopback, and I haven't been able to make it work with xinetd either.