Skip to content

Latest commit

 

History

History
29 lines (27 loc) · 823 Bytes

README.md

File metadata and controls

29 lines (27 loc) · 823 Bytes

Milepael 2

Starting the game

Without multiplayer

python3 Milepael_2.py

With multiplayer

sudo python3 Milepael_2.py host

Multiplayer interface endpont

https://pearpie.is-very-sweet.org/site/index.html

Generating SSL certificates

With Open SSL (slow)

Stack Overflow Post

openssl req -x509 -newkey rsa:4096 -nodes -out cert.pem -keyout key.pem -days 365

With certbot (fast)

Tutorial

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install certbot
certbot certonly --standalone -d example.com -d www.subdomain.example.com
sudo ls /etc/letsencrypt/live/example.com/