The "main" one should be IIS. Is there an option to address the Apache without typing in the port-number The reason for this is: I cannot get Django to work on IIS Any ideas will be appreciated
Is it possible to run Apache and IIS on the same machine with one IP-Address (and different ports ?)
|
|
|||
|
|
|
You could set up Apache on a different port, then use redirects or proxying on IIS to get people to the Apache port without them having to type it. |
||
|
|
|
The only way to avoid typing in the port number is to set up a proxy, which could be either one of the two webservers. That way, the proxy makes the connection on the alternate port and the client doesn't have to know where it is. I don't know about IIS, but on Apache, you would have to load mod_proxy (and I think, mod_proxy_http) and then do something like this:
Also check the docs for mod_proxy online. You might also want to look at lightweight webservers such as lighttpd, if you're going to have two running. It's a common setup to have a light webserver taking specific tasks away from the main one. (Apache for dynamic and lighttpd for static content is one typical example). There's also other possibilities, ranging from getting more fancy, such as
to attacking the root cause by either
Of course, I have no clue what might be appropriate for your situation. |
|||
|
|
|
|
If this is a matter of running Django on a server that already needs IIS, you can run django on IIS directly, thanks to efforts like Django-IIS and PyISAPIe. I think it would be preferable to NOT run a second web server when all its going to be doing is proxying requests out to a third server, the Django code. |
|||
|
|
|
|
It is absolutely possible to do that. |
||
|
|
|
|
Does anyone know how to setup IIS as main server on port 80 and to access an apache server on port 8080 throuth port 80? www.mysite/iisSite www.mysite/apacheSite Hanno Fietz answer was for apache. I need the other direction. Thanks. |
||
|
|
