Certificado SSL/TLS

Certificado SSL/TLS

Check current certificate

Access the Qualys SSL Labs for gitlab.nupessc.caf.ufv.br certificate check.

Renew TLS certificate

Follow the steps:

  1. Make sure apache2 service is stopped
    systemctl status apache2
    

    Necessary due to port 80 assignment

  2. Stop the service
    sudo systemctl stop apache2
    
  3. Use certbot to renew certificate
    sudo certbot certonly --standalone -d nupessc.caf.ufv.br -d gitlab.nupessc.caf.ufv.br
    
  4. Start the stopped apache2 service
    sudo systemctl start apache2