asked on
ASKER
ASKER
ASKER
IIS is Internet Information Services, the web server included with Windows Server operating systems. All current versions are built on a modular architecture; modules can be added or removed individually so that those required for specific functionality are installed. The full installation of IIS includes HTTP, security, content, compression, caching, logging and diagnostics.
TRUSTED BY
To get around this, you either keep appending :8080 to the domain name. Alternatively, you can create a new subdomain (aspnetsite.domain.com) which is mapped to the server also on port 80. You can then configure IIS to listen for the aspnetsite.domain.com, and Apache to listen just for domain.com.
The final solution is to use domain.com/aspnetsite, with a redirect on /aspnetsite to automatically send the user to :8080.
-tigermatt