Welcome to Centmin Mod Community
Become a Member

SSL intermediate.crt root.pem missing?

Discussion in 'Domains, DNS, Email & SSL Certificates' started by pamamolf, Oct 15, 2014.

  1. eva2000

    eva2000 Administrator Staff Member

    58,893
    12,490
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +19,122
    Local Time:
    12:52 PM
    Nginx 1.31.x
    MariaDB 10.x/11.4+/12.3+
    you're missing http to https redirect in
    Code:
    server {
      server_name ihostexperts.com www.ihostexperts.com;
    
    }
    should be like
    Code:
    server {
      server_name ihostexperts.com www.ihostexperts.com;
      return 301 https://$server_name$request_uri;
    }
    that's why this works
    Code:
    https://ihostexperts.com/
    but not non-https
    Code:
    http://ihostexperts.com/


     
  2. pamamolf

    pamamolf Well-Known Member

    4,125
    429
    83
    May 31, 2014
    Ratings:
    +841
    Local Time:
    5:52 AM
    Nginx-1.29.x
    MariaDB 10.6.x
    Great but if this needed why is not added by default as i didn't remove it?(latest beta 0.8 and adding from menu option 2 my domain)

    And one last question as the above working great now with the none www if i want to use always the www how can i adjust my configs?

    Thanks !!!
     
  3. eva2000

    eva2000 Administrator Staff Member

    58,893
    12,490
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +19,122
    Local Time:
    12:52 PM
    Nginx 1.31.x
    MariaDB 10.x/11.4+/12.3+
    it's specified and outlined in official guide at Nginx HTTPS / SSL Google SPDY configuration you must of left it out :) There's no auto adding for menu option 2 for SSL.. it's all manual replacement as per outline at Nginx HTTPS / SSL Google SPDY configuration

    for www just change it

    Code:
    server {
      server_name ihostexperts.com www.ihostexperts.com;
      return 301 https://www.ihostexperts.com$request_uri;
    }
    and ensure www.ihostexperts.com is listed in server_name for SPDY SSL server context
     
  4. pamamolf

    pamamolf Well-Known Member

    4,125
    429
    83
    May 31, 2014
    Ratings:
    +841
    Local Time:
    5:52 AM
    Nginx-1.29.x
    MariaDB 10.6.x
    It seems that i must start reading and not make stupid questions :)

    Thanks George :)
     
  5. rdan

    rdan Well-Known Member

    5,452
    1,418
    113
    May 25, 2014
    Ratings:
    +2,212
    Local Time:
    10:52 AM
    Mainline
    10.2
  6. pamamolf

    pamamolf Well-Known Member

    4,125
    429
    83
    May 31, 2014
    Ratings:
    +841
    Local Time:
    5:52 AM
    Nginx-1.29.x
    MariaDB 10.6.x
    Reading in general all tutorials of Centminmod as i love it :)

    Now i am in state to use Postfix with Roundcube for reading mails using the browser but i am not so sure if i need Dovecot also for that or not ....?