? SSL Certificate Installation

SSL Certificate Options

  • Let's Encrypt (Free): Automatic installation and renewal
  • Purchased SSL: Commercial certificates from providers
  • Self-signed: For testing purposes only

Installing Let's Encrypt SSL Certificate

  1. Access SSL/TLS Certificates
    Websites & Domains → SSL/TLS Certificates
  2. Click "Install" for Let's Encrypt
  3. Configure Settings:
    • Select domain and subdomains to secure
    • Include www and non-www versions
    • Include webmail if needed
    • Enable automatic renewal (recommended)
  4. Click Install
  5. Enable HTTPS Redirect
    Enable "Permanent SEO-safe 301 redirect from HTTP to HTTPS"

Installing Commercial SSL Certificate

  1. Generate CSR (Certificate Signing Request) in Plesk
  2. Purchase SSL from provider using CSR
  3. Receive certificate files from provider
  4. Upload certificate files in Plesk:
    • Certificate (.crt)
    • CA Bundle (intermediate certificates)
    • Private Key (if not generated in Plesk)
  5. Assign certificate to domain

SSL Certificate Types

Type Validation Best For Trust Level
Domain Validated (DV) Domain ownership only Blogs, personal sites Basic
Organization Validated (OV) Organization verification Business websites Medium
Extended Validation (EV) Extensive verification E-commerce, banking Highest
Wildcard Varies Multiple subdomains Varies

Force HTTPS Redirect

Add to web.config to force HTTPS:

<system.webServer>
  <rewrite>
    <rules>
      <rule name="Force HTTPS" stopProcessing="true">
        <match url="(.*)" />
        <conditions>
          <add input="{HTTPS}" pattern="off" ignoreCase="true" />
        </conditions>
        <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" 
                redirectType="Permanent" />
      </rule>
    </rules>
  </rewrite>
</system.webServer>

SSL Certificate Renewal

  • Let's Encrypt: Auto-renews every 60 days
  • Commercial SSL: Manual renewal before expiry
  • Set renewal reminders 30 days before expiry
  • Test renewal process in advance
Hjalp dette svar dig? 0 Kunder som kunne bruge dette svar (0 Stem)