Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 564 Bytes

installation.md

File metadata and controls

22 lines (18 loc) · 564 Bytes

https://github.com/DoTheEvo/Traefik-v2-examples

In Strive/src folder

touch acme.json && chmod 600 acme.json

Firewall

sudo apt install ufw
sudo ufw allow ssh comment 'allow SSH connections'
sudo ufw default deny incoming
sudo ufw default allow outgoing comment 'allow all outgoing traffic'
sudo ufw allow 80/tcp comment 'Strive HTTP'
sudo ufw allow 443/tcp comment 'Strive HTTPS'
sudo ufw allow 40000:49999/tcp comment 'Strive WebRTC'
sudo ufw allow 40000:49999/udp comment 'Strive WebRTC'
sudo ufw enable

sudo ufw status verbose