Madhukar Anand·May 7How does HTTPS work?Hypertext Transfer Protocol Secure (HTTPS) is an extension of the Hypertext Transfer Protocol (HTTP.) HTTPS transmits encrypted data using Transport Layer Security (TLS.) If the data is hijacked online, all the hijacker gets is binary code. How is the data encrypted and decrypted? Step 1 — The client (browser) and…Https2 min read
Ricardo Torrez·Apr 15Use a Script to install and launch an Apache Server on CentOS 8Apache is the go-to web-server for website owners, developers and hosting providers. It dominates the market share by 33% across all websites. Companies using Apache include Salesforce, IBM, General Electric, Cisco and many more. …Cloud Computing5 min read
VehdatHamid·Apr 13Launch a webserver (apache) and host a website on AWS(or any linux).In this article I will explain how you can install and start a webserver on linux OS, for this article I am going to use AWS EC2 service to launch an instance of Linux OS but you follow along using any other linux os/flavour. first and foremost using the below…AWS3 min read
Dipankar BARUA·Apr 7How to check the apache httpd processes running in LinuxWhen we want to find a list of processes running on a Linux box, we use ps -fax Now apply the grep command to filter out only httpd process list. ps -fax | grep httpd or ps -ef | grep httpd To know the number of httpd processes running apply the ‘wc -l’ command like ps -fax | grep httpd | wc -l ps -ef | grep httpd | wc -l Originally published at https://barua-group.com on April 7, 2022.Apache1 min read
Muneer Husain·Apr 7How to Setup HTTPD Web Server with custom configurationIn this article, we will see how to change the default port no, document root, and log the location of the apache webserver. TASK DESCRIPTION:- Install the HTTP server in rhel 8 Change default port no 80 to 8080 Change default Document root “/var/www/html” to “/webserver/custom_path/html” Change default log path from “/var/log/httpd”…Web Server4 min read
Marcus Smith·Mar 10Working with Amazon Elastic Container ServiceBeginners guide to leveraging an ECS cluster to host an HTTPD application. In this article I will go over how to launch and configure HTTPD application to run on an ECS Cluster. The tech world is forever changing and evolving, and within the Cloud it’s vital to learn how containers…AWS8 min read
Fast Application Dev·Dec 17, 2021Deploy Angular2 Application in Apache on centos 7 serverHello everyone, in this page we will explain the steps to deploy the angular application (myApp) in Apache (httpd) server Step1: Generate production build from application - Make sure you have the correct property values for the production environment (check environement.prod.ts) - run cmd “npm build — prod”) => this cmd will generate a “dist” folder…Angular1 min read
Hannah Do·Sep 30, 2021Simple Introduction to DockerOverview Docker is an open platform for developing, shipping, and running applications. Docker can reduce the delay between writing code and deploying it for production. Docker uses light components called “containers” for continuous integration and delivery workflows.Docker5 min read
Niharika Dhanik·Aug 30, 2021Configure Docker Using Ansible PlaybooksAfter learning the concepts of Ansible and Docker, it was now time to integrate these two technologies and ease the task. So here by I present my next task of “Integration of Ansible With Docker”. What is Ansible? Ansible is an open source automation engine designed for Information technology (IT) administrators and development…Ansible Playbook5 min read
Abhishek Ranjan·Aug 26, 2021Hosting Nodejs application on AWS EC2(Amazon Linux 2 AMI) using Apache2 web serverFirstly we will launch our EC2 instance and then securely ssh into it from our local machine, now we will configure Apache to act as a reverse proxy to our nodejs server which will accept all incoming HTTP traffic on port 80! Hosting with AWS (Amazon Linux 2 AMI) Prerequisite AWS Account SSH Client Launch your EC2 Instance…Aws Ec 24 min read