Skip to content

Latest commit

 

History

History
39 lines (22 loc) · 1.38 KB

Revoking-SSL-Certificates.md

File metadata and controls

39 lines (22 loc) · 1.38 KB

In case you wanted to revoke the SSL certificates/keys for some reason (e.g. using a domain that has been already used for one Cloudbox server on another server), here are the commands to do so. Run these as user (not sudo).

Note: This is not required if you are simply [[Migrating Cloudbox]] to another server via Backup/Restore.

  1. Revoking keys for the domain:

    Run the following script:

    /opt/scripts/nginx/revoke_certs.sh

    Chose y to delete the cert(s)"

    -------------------------------------------------------------------------------
    Would you like to delete the cert(s) you just revoked?
    -------------------------------------------------------------------------------
    (Y)es (recommended)/(N)o: 
    
  2. Before re-running Cloudbox with your new settings (e.g. domain name changes), it is advised to remove all the docker containers before hand. [1] [2]

    docker stop $(docker ps -aq)
    docker rm $(docker ps -aq)

1 Cloudbox install will try to remove all the docker containers before installing, but it's better to remove them manually, beforehand.

2 If you need to keep other non-Cloudbox containers, you may just remove the nginx-proxy container, instead, before re-running Cloudbox.