HTTP Error 403.4 - Forbidden

When I access my local host of my machine, I get the following screen

enter image description here

whereas when I try to do the same on my server, I get the following error

HTTP Error 403.4 - Forbidden The page you are trying to access is with a secure socket layer (SSL).

I tried replacing http with https, but I see a directory lookup. How to configure a local host on the server to change the screen.

My car:
OS: Windows 8 IIS Version: 8

My server machine:
OS: Windows 2012 Server IIS Version: 8

Share your suggestions

+6
source share
2 answers

It looks like you installed the โ€œrequired SSLโ€ for the site and did not assign it a certificate.

You have 2 options:

Option 1. Remove the โ€œSSL requestโ€ from the site using the following instructions:

  • Open IIS Manager
  • Click on your website.
  • Click "SSL Settings" under "IIS"
  • Uncheck "Require SSL"

Option 2. Link the certificate to your website:

Look here

Hope this helps you.

Thanks Dave

+16
source

You seem to have selected the "Require SSL" settings in IIS. You need to delete it.

Follow these steps to resolve this error.

Open IIS.

Choose your website that has a problem.

Click SSL Settings.

Disable the option "Require SSL".

0
source

Source: https://habr.com/ru/post/955744/


All Articles