...
...
Code Block |
---|
# Install ufw sudo apt-get install ufw # Set the defaults used by UFW sudo ufw default deny incoming sudo ufw default allow outgoing # Configure your server to allow incoming SSH connections sudo ufw allow ssh # Configure your server to allow incoming http connections sudo ufw allow http # Configure your server to allow incoming https connections sudo ufw allow https # Enable UFW sudo ufw enable |
Postfix Mail Server
...
Install postfix and mailutils
...