by GOC Blogger | Jul 20, 2021 | Blog, Technical
How to install Free SSL on Ubuntu Apache/Nginx using certbot? 1. Update repository for certbot installation# sudo add-apt-repository ppa:certbot/certbot 2. Install certbot package for Apache/Nginx# apt install python-certbot-apache //For Apache Webserver# apt...
by GOC Blogger | Jul 20, 2021 | Blog, Technical
Magento is an extremely popular open source e-commerce service powered by PHP. It provides a flexible modular architecture enhanced with agile ecosystem to continually adapt, customize and extend your platform. This allows Magento to be much more versatile than most...
by GOC Blogger | Jul 20, 2021 | Blog, Technical
How to create and enable website using Apache webserver Install apache using command#apt update#apt install apache2 Here apache service will be stopped and will be disabled on start-up. Hence we need to start the service and enable auto-start. #systemctl...
by GOC Blogger | Jul 15, 2021 | Blog, Technical
New to Dockers? Follow below links for quick start on how to Dockers? Get Started, Part 1: Orientation and setup https://docs.docker.com/get-started/part1 Get Started, Part 2: Containers https://docs.docker.com/get-started/part2 Get Started, Part 3: Services...
by GOC Blogger | Jul 15, 2021 | Blog, Technical
How to map docker container port to the host port By default, when the container is created, it doesn’t publish any port to Internet to within the network connected to the host. In order to acheive it, use –publish or -p flag. This creates a firewall rule...