Anjanesh Lekshminarayanananjanesh.dev·Nov 17, 2024apache2 and httpd being run on macOS simultaneouslyThis is a simple post mainly for my notes incase I need to recapitulate what should be done to restore running of my virtually hosted websites on my laptop. Ever since I installed httpd on my macOS 15.1 using homebrew and configured my virtual hosts ...apache2
Yuvraj Singh Rajawatyuvraj-singh.hashnode.dev·Oct 16, 2024Installing Apache Web Server on RHEL 9: A Simple TutorialAre you ready to set up your own Apache web server on Red Hat Enterprise Linux (RHEL) 9? Apache is one of the most popular and reliable web servers available. Whether you're hosting a personal site or managing a larger application, Apache has your ba...apache
RAKESH DUTTAdailydoseindevops.hashnode.dev·Sep 7, 2024Deploying a Website on Amazon EC2 with the Amazon Linux Operating System, AWS Service Project.This entire guide helps you through each step necessary for a successful Amazon EC2 instance hosting using the Amazon Linux AMI. Starting from how to set up your EC2 instance in the beginning and in the end where you deploy your website. Launch an EC...AWS - DevOps ProjectsDevops
Gaurav Kumarkubernetes-by-gaurav.hashnode.dev·Jun 20, 2024Liveness and Readiness Probes in Kubernetes with example.Liveness ProbeThis probe checks if the application is alive and functioning or not. If the liveness probe fails, Kubernetes will restart the container. If the configured liveness probe is successful no action is taken and no logs are recorded but if ...kubernetes-livenessProbe
Aman kant Mahtoaman272.hashnode.dev·Mar 25, 2024Setup and configure the apache webserver in the dockerIntroduction: In this tutorial, we'll walk through the process of setting up and configuring an Apache web server within a Docker container. Docker provides a convenient way to package applications and their dependencies into a lightweight container,...Docker
Adedeji Adekunlekadedeji.hashnode.dev·Dec 9, 2023Project 2: Deploy a static website on AWS.Overview This documentation provides a comprehensive guide on hosting a static website on an AWS EC2 instance using the Apache web server. By following these steps, you can deploy your static website and make it accessible over the internet. We will ...86 readsapache
Pemba Tshering Tamangtamangpemba.hashnode.dev·Aug 14, 2023Web Server Setup: HTTPDWelcome to this enlightening episode of our vlog, where we're demystifying web servers! If the thought of setting up a web server sounds daunting, don't worry – we've got your back. In this episode, we're taking you through the straightforward proces...1 like·90 readsweb server
Meenal Jyotikameenaljyotika.hashnode.dev·Jun 7, 2023Setting up and Hosting a Website on an EC2 Instance using SSH.Pre-requisites:- AWS account. Running EC2 instance which has security roles of HTTP(Edit the inbound rules to allow incoming traffic on port 80 (HTTP) from any IP address (0.0.0.0/0) or specify your desired IP range.) PuTTY is installed on your Wi...6 likes2Articles1Week
Anushka VisapureforTeckbaker's Blogteckbakers.hashnode.dev·Apr 22, 2023Deploying Web Server on AWS by using ANSIBLE!!Task: Provision EC2 instance through Ansible. Retrieve the IP Address of the instance using a dynamic inventory concept. Configure the webserver through Ansible. Amazon Web Services: Amazon Web Services (AWS) is a subsidiary of Amazon providing ...28 readsDevops & Cloudansible
Syed Muhammad Kamransmkamran.hashnode.dev·Jan 27, 2023How to check the concurrent Apache connections and IP address of the remote host?This command is using several command line utilities to gather information about the current network connections on a Linux or Unix-based system. netstat -ntu|awk '{print $5}'|cut -d: -f1 -s|sort|uniq -c|sort -nk1 -r netstat -ntu: The netstat comma...116 readsapache