Skip to content

humankernel/avante

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tech Stack

api: Fast & Flexible

| | Go | Elysia | | | -- | ------ | | Fast | | |

Getting Started

Generar certificado y clave para web.local y api.local

cd nginx/certs

openssl req -x509 -nodes -days 365 -newkey rsa:2048 \
  -keyout web.local.key \
  -out web.local.crt \
  -subj "/CN=web.local"

openssl req -x509 -nodes -days 365 -newkey rsa:2048 \
  -keyout api.local.key \
  -out api.local.crt \
  -subj "/CN=api.local"

-x509 → crea un certificado autofirmado -nodes → no encripta la clave privada -days 365 → válido por 1 año -subj "/CN=web.local" → nombre común