Tentei configurar pelo docker, mas não sai da tela do 404 not found.
nginx: image: nginx:latest volumes:
  - ./templates:/etc/nginx/templates
ports:
  - 80:80
environment:
  - NGINX_PORT=80server { listen ${NGINX_PORT}; server_name localhost;
location / {
    root /home/rodrigo/Documentos/Projetos/comecedaqui.github.io;
    index index.html;
}}
