Skip to content

Instantly share code, notes, and snippets.

@marceloserpa
Created April 6, 2021 14:10
Show Gist options
  • Save marceloserpa/80b80b7849daf65fc93b865d3b8f5280 to your computer and use it in GitHub Desktop.
Save marceloserpa/80b80b7849daf65fc93b865d3b8f5280 to your computer and use it in GitHub Desktop.

Acessar a máquina

sudo chmod 400 [arquivo e diretório do seu PEM FILE].pem
ssh -i [arquivo e diretório do seu PEM FILE].pem ec2-user@[IP publico da sua maquina]

Preparar o servidor:

sudo yum install httpd

sudo touch /var/www/html/index.html

Página com hello world

<!DOCTYPE html>
<html>
  <head>
    <title>Hello World</title>
  </head>
  <body>
    <h1>Hello World</h1>
  </body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment