đŸ¦²
mind
  • cleber's mind
  • plans
    • fact checking
    • personal assistant
  • self-management
    • agenda and tasks
    • mails and emails
  • knowledge
    • career
    • programming
      • Big O Notation
      • browsing data
      • C/C++
      • databases
      • eclipse
      • gradle
      • java
        • apache camel
      • javascript
      • naming convention
      • mysql
      • prolog
      • regex
      • REST
      • ssl/tls
      • version control
        • git commands
      • web-semantics
      • wot
    • research
      • mas
      • planning
      • math
        • probability
      • machine learning
      • nlp
      • speech recognition
      • data sources
      • data visualisation
    • it
      • asterisk
      • containers
        • installing docker
        • deploying busybox
        • deploying a sample
        • deploying node-red
        • deploying from the hub
      • clusters
        • installing kubernetes
        • deploying bootcamp
        • deploying nginx
        • deploying jacamo-rest
        • grafana
      • deploy
        • heroku
      • linux
        • tmux
        • vim
        • startup
      • networks
      • pdf
        • ssh
    • productivity
    • language
      • expressions
        • nice signposts
        • linking expressions
      • latex
      • scientific
      • writing
    • sailing
    • financial
      • assets
    • emergency
    • out of boxes
  • teaching
    • eletrĂ´nica digital
      • ConversĂ£o decimal para binĂ¡rio
      • ConversĂ£o binĂ¡rio para decimal
      • Sinais analĂ³gicos vs digitais
    • programaĂ§Ă£o I
    • cabeamento estruturado
  • moments
    • insightful ai facts
    • ai4industry-hackathon
    • previous activities
  • brasil
  • external links
    • personal webpage
    • my github
Powered by GitBook
On this page

Was this helpful?

  1. knowledge
  2. programming

ssl/tls

Using certbot

Certbot is a tool that helps to get and keep certificates updates

If Certbot isn't already installed, run the following commands:

$ sudo apt update
$ sudo apt install certbot

Check existing certificates:

$ sudo certbot certificates

Os certificados ficam por padrĂ£o na pasta /etc/letsencrypt/live/

To update the existing certificates, first stop your webserver (nginx, apache, or another):

$ sudo systemctl stop apache2
or
$ sudo systemctl stop nginx

You can check if your Certbot is set properly for renewing the certificate:

$ sudo certbot renew --dry-run

If everything is well, you can renew the certificate running:

$ sudo certbot renew

Suba o servidor web novamente

$ sudo systemctl start apache2
or
$ sudo systemctl start nginx

PreviousRESTNextversion control

Last updated 10 months ago

Was this helpful?