Skip to content

Instantly share code, notes, and snippets.

@jppcel
Last active August 2, 2021 13:26
Show Gist options
  • Save jppcel/505f6c45e8bfcd52819424c6d71d7dc7 to your computer and use it in GitHub Desktop.
Save jppcel/505f6c45e8bfcd52819424c6d71d7dc7 to your computer and use it in GitHub Desktop.
Ativando o Let's Encrypt (SSL) no Wowza 4.8.0 (Ubuntu 20.04)
# atualize o servidor
apt-get update && apt-get upgrade -y
apt-get install git -y
# clone o repositório do certbot e o configure
git clone https://github.com/certbot/certbot /opt/letsencrypt
cd /opt/letsencrypt
# instale o certbot também por linha de comando
apt install certbot python3-certbot-nginx -y
# crie o certificado SSL. troque SUB.DOMAIN.EXT para o domínio que deve já estar apontado para seu servidor e com a propagação concluída
sudo certbot certonly --standalone -d SUB.DOMAIN.EXT
# Algumas perguntas são solicitadas. As responda conforme abaixo
```
enter email: seu-email
agree TOS(Terms of Service): A
Share your email: (up to you): N
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment