Guidelines - IT (7)

Sklepmistr

Docker

************************************************************** DOCKER ***************************************************************** INSTALLATION: # sudo apt-get remove docker docker-engine docker.io containerd runc // remove old versions # sudo apt update // update repositories # sudo apt install apt-transport-https ca-certificates curl gnupg lsb-release // packages that allow apt to use repos over HTTPS # curl…

Continue reading...
Sklepmistr

Apache2

APACHE2 # apache2 # apache2ctl Enable/Disable site ls /etc/apache2/sites-enabled/ // show enabled sites apache2ctl -S // sudo a2ensite sitename.conf // enable site sudo systemctl reload apache2 // reload after change sudo a2dissite sitename.conf // disable site sudo systemctl reload apache2 SSL sudo ufw allow "Apache…

Continue reading...