#!/bin/bash # executar com sudo # wget -O - thisUrl | bash apt-get install apt-transport-https -y apt-get update -y && apt-get upgrade -y && apt-get install curl -y curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list apt-get update && apt-get install software-properties-common -y && add-apt-repository universe && add-apt-repository ppa:certbot/certbot && apt-get update -y && apt-get install certbot python3-certbot-nginx yarn nginx git -y --allow-unauthenticated && apt-get autoremove -y