Last active
August 2, 2021 13:26
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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