Skip to content

sjaviking/martin_piProject

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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/