Let’s Encrypt is an open certificate authority and provides free SSL Certificates. It’s popular for it’s simplicity to setup. It’s been founded by Mozilla, Cisco and many more. The setup process is very simple, I have explained it in 3…
Category: apache
How to install Apache2 Server in AWS EC2 Linux
After you have created and launched your EC2 instance you must be wondering what to do next?if you enter your instance ip in your web browser nothing will show because you need to install a server to see some action!…
Place a static file in root directory in Apache Server
Sometimes you are required to place files like sitemaps or other files in the root location. Specially while using Web frameworks like Django or anything else, It can be bit tricky to do so within the framework.. So this method…
Set Permissions to add files to /var/www folder in ubuntu linux
/var/www is the default root folder of your local web server (like apache), you host all your website files here and access it on the browser with url like http://127.0.0.1 or http://localhost you cannot simply copy paste stuff in this…