- Netty-SocketIO
- Generate certificates:
- Use a Unix-like terminal (bash, git bash, etc)
- write your local ip address of your computer/host like
192.168.0.3 - if you're on linux:
ip -br addr show | grep 192.168 - if you're on windows:
ipconfig | findstr "192.168"
- generate your keys
- execute the following command:
mkdir ssl && openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout ssl/private_key.pem -out ssl/certificate.pem -subj "/C=Ar/ST=Buenos Aires/L=Tigre/O=Organization/OU=Departament/CN=<YOUR_IP>"
- execute the following command:
-
build docker image
- with docker compose
docker compose up -d --build
- only docker if you already have configured a proxy
docker build -t your-image-name:latest && docker run -d --name your-container your-image-name