Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

When does apache 8080 go through iis to apache?


Asked by Giuliana Hill on Nov 29, 2021 Go



Yep IIS has to go to Apache when the video script is called. IIS 80 (download folder only) <==Rest=> Apache 8080. and www.apachelounge.com goes through IIS to Apache. am i correct? I believe you do not have to use a Virtual host in Apache for you video script.
Furthermore,
For instance: Apache listens on port 80, IIS on port 8080. Every http request goes to Apache first (of course). You can then decide to forward every request to a particular (named virtual) domain or every request that contains a particular directory (e.g. http://www.example.com/winapp/) to the IIS.
Also Know, Either two different IP addresses (like recommended) or one web server is reverse-proxying the other (which is listening on a port <>80). For instance: Apache listens on port 80, IIS on port 8080. Every http request goes to Apache first (of course).
Additionally,
Although Apache can run on Windows, if you already have your business based on Microsoft products, you already have onsite skills that are more compatible with IIS than Apache. If you don’t already have onsite resources, then you are open to the option of Cloud-based Web servers.
Similarly,
In Apache, enable mod_proxy and mod_proxy_http, then add a catch-all VirtualHost (after all others) so that requests Apache isn't explicitly handling get "forwarded" on to IIS. Now you can have Apache serve some sites and IIS serve others, with no visible difference to the user.