Link to home
Start Free TrialLog in
Avatar of Peter Chan
Peter ChanFlag for Hong Kong

asked on

Enable also 80 port

Hi,
Here is how I each time go to the starting page of the site
http://192.168.168.1:81/Start_devst

Now I want to also enable 80 port like
http://192.168.168.1:80/Start_devst

for it. How?
Avatar of bigbigpig
bigbigpig

Just edit the bindings of the web server engine.  For example, if you use IIS go to the IIS Manager > Sites > your site, then click "Bindings..." and add port 80.  If port 80 is already bound to something you need to either remove that binding, stop that site, or add a host header to your site you want on 80 so it doesn't conflict.
Avatar of Peter Chan

ASKER

Thanks. After I have put the line shown in Fig 1, I got this

Server Error in Application "DEFAULT WEB SITE"

Internet Information Services 7.5
Error Summary
HTTP Error 403.4 - Forbidden
The page you are trying to access is secured with Secure Sockets Layer (SSL).
Detailed Error Information
Module      IIS Web Core
Notification      BeginRequest
Handler      ExtensionlessUrlHandler-ISAPI-4.0_64bit
Error Code      0x80070005
Requested URL      http://192.168.168.1:80/Start_devst
Physical Path      C:\inetpub\wwwroot\Start_devst
Logon Method      Not yet determined
Logon User      Not yet determined
Most likely causes:

    Secure Sockets Layer (SSL) is enabled for the URL requested.
    The page request was made over HTTP, but the server requires the request from a secure channel that uses HTTPS.

Things you can try:

    Browse to the URL over a secure channel by using the "https:" prefix instead of "http:".
    If the Web site does not have an SSL certificate or should not require HTTPS, disable the setting.
    Verify the SSL Settings in IIS Manager by connecting to the server, site, application or page and opening the SSL Settings feature.
    Verify the configuration/system.webserver/security/access@sslFlags attribute at the server, site, application, or page level.

Links and More Information This error means that the requested Web page requires SSL. Try to browse to the same URL, but use "https:" instead of "http:".

View more information »
t543.png
Avatar of Emmanuel Adebayo
Go to the IIS Manager again.
Click the site node in the tree view to go back to the site's home page.
Double-click the SSL Settings feature in the middle pane.

In the SSL setting unchecked "Require SSL"

Regards
Thanks. I see that "Require SSL" is already unchecked.
I think you might need to use firefox and enable the debug mode so as to see what is going on when you browse to the site.

Where you using https when browsing through port 81 earlier?

Regards
SOLUTION
Avatar of bhupenderccna
bhupenderccna
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Giveandtake,
How to enable debug mode in Firefox?

Bhupender,
I cannot leave host name blank (please see Fig 2)
t544.png
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi,

You have two website that are using unassigned, as bhupenderccna as pointed out, is either you stop on of the site or you assign IP address 192.168.

You can download fiddler from http://fiddler2.com/features/web-debugging

Regards