SSL for portal
 
Notifications
Clear all

SSL for portal

10 Posts
5 Users
0 Likes
3,415 Views
Posts: 1456
Admin
(@trobinson)
Noble Member
Joined: 8 years ago

Hello,

 

1 - I would leave to all unassigned

2 - You want to keep port 443

3 - Enter the portal URL

4 - Using SNI is a good idea

 

I have also attached a photo. Don't forget to select the certificate from the dropdown list.

 

Kind Regards,

 

Trevor Robinson

Reply
Posts: 14
Topic starter
(@solicpuser)
Active Member
Joined: 7 years ago

Thanks for your reply

I made that changes but still request for are goes to non secure site : http://subdomain.domainname.tld:9001 not : https://subdomain.domainname.tld

 

How can I redirect all request to SSL ?

Reply
Posts: 1456
Admin
(@trobinson)
Noble Member
Joined: 8 years ago

Hello,

 

You will need to setup a redirect in IIS if you want to redirect people to the https page.

 

You should be able to go to the https page and it load the panel without any issues.

 

Kind Regards,

 

Trevor Robinson

Reply
Posts: 24
(@browserfiles)
Eminent Member
Joined: 8 years ago

Hi,

Add this to your SolidCP Portal web.config for redirection:

<rewrite>
<rules>
<rule name="Use SSL" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="^OFF$" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" />
</rule>
</rules>
</rewrite>

 

You can put it just before closing the system.webserver node.

 

Warm regards,

Joseph

Reply
Posts: 31
(@kailash)
Eminent Member
Joined: 8 years ago

You can also run SolidCP installer again to update your portal URL. During configuration, make sure you specify on HTTPS URL.

Reply
Page 2 / 2
Share: