Hi
I am using SolidCP 1.1.2 on my subdomain: subdomain.server.tld
It is a live server Windows 2012 and has the static IP address. I purchased an Essential SSL for this subdomain by following steps:
1-created CSR on my IIS server (common name: subdomain.server.tld )
2-Purchased SSL by using this CSR
I installed SSL on my IIS now it is showing on my IIS->SSL certificates
I tried to open my portal by SSL: https://subdomain.server.tld but it doest show anything!
My question is what steps I missed?! Where do I need to make it works? I need all requests on my portal redirects to https not http
I have : webmail on that (subdomain.server.tld/webmail) I want all requests on webmail also has https on webmail.
and for the last question:
Can I use this SSL for my server’s SMTP, POP connections?
Thanks,
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
Hello,
You will need to click on your Portal website –> Bindings (on the right side), and add a https binding with the certificate you added in IIS.
Once thats done it won’t automatically re-direct to https, you should make a url rewrite rule to rewrite http to https.
You can use the same ssl for smtp / pop connections aslong as the name of the smtp / pop url is on the certificate (or a wildcard cert will do).
Regards,
Marco
Hi
I found that, but in binding when I’m trying to add new one there are more setting that I do need to choose:
1-IP address, do I need to assign it to default main IP address? (I have only 1 IP address on that server)
2-There is a port number that I should choose, its default value is 443, which port number I need to choose?
3-There is a host name, what should I enter for host name?
4-Do I need to tick on “Require Server Name Indication” checkbox?
Thanks