Web Server

Write Apache Tomcat Dockerfile for Ubuntu 20.04 LTS

Apache Tomcat is a open source Java servlet container and in this post we will write the Apache Tomcat Docker file.  FROM ubuntu:latest RUN apt-get update -y && apt-get install default-jdk -y RUN groupadd tomcat RUN useradd -s /bin/false -g tomcat -d /opt/tomcat tomcat RUN cd /tmp && apt-get install curl -y RUN curl -O […]

How To Install the Apache Web Server on Ubuntu 22.04 LTS

  Apache is a free and opensource web server in the world, It gives numerous incredible highlights including powerfully loadable modules, strong media uphold, and broad incorporation with other mainstream programming.   In this post, We will install and configure Apache2 on ubuntu 22.04 LTS   Step 1: Update the System   You need to […]

Installing Nginx using Ansible Playbook on ubuntu

Working as a I.T professional, We need to also required to install a single or multiple packages in our multiple server, Here we are about to create Ansible Playbook to install Nginx web server. We believe, You have already installed Ansible if not you need to click on given link to install Ansible on ubuntu […]

How to Enable NGINX Status Page on ubuntu 18.04/20.04 LTS

In this post, We will enable NGINX Status Page on ubuntu 18.04/20.04 LTS. NginX, is a web worker that can likewise be utilized as a converse intermediary, load balancer, mail intermediary and HTTP store. The product was made by Russian computer programmer Igor Sysoev and openly delivered in 2004.   Step 1: Verify the Nginx […]

Install and configure Apache node exporter with prometheus on ubuntu 16.04/18.04/20.4 LTS.

  In this post, We will install and configure Apache node exporter with prometheus on ubuntu.    I believe you have already installed and setup the Prometheus and Grafana if not so then use the given useful link for the same.   https://www.techbeginner.in/2020/12/how-to-install-prometheus-on-ubuntu.html   Welcome to our post for  the most proficient method to Monitor […]

How to install WordPress on Ubuntu 18.04 LTS

  WordPress is the most mainstream CMS (content administration framework) on the web. It permits you to effectively set up adaptable sites and sites on top of a MySQL backend with PHP preparing. WordPress has seen amazing reception and is an incredible decision for getting a site going rapidly. After arrangement, practically everything organization should […]

How to Install LEMP Stack on Ubuntu 16.04/18.04/20.04

Nginx is a free, open-source, tip top HTTP laborer. Nginx is known for its fast, security, rich rundown of abilities, clear arrangement, and low resource use. This instructional exercise shows how you can present Nginx on a Ubuntu 20.04 LTS laborer with PHP 7.4 assistance (through PHP-FPM) and MySQL support (LEMP = Linux + Nginx […]

How to set up apache2 reverse proxy on Ubuntu 16.04/18.04/20.04 LTS

Apache Web Server – Turn around intermediary is the point at which an intermediary worker (for this situation, Apache2 HTTP) acknowledges all traffic and advances it to a particular asset, similar to a backend worker or compartment.. The backend worker can be either another Apache2 or open source HTTP worker like Nginx… Apache2 HTTP worker is […]

Redirect HTTP to HTTPS in Apache2 on ubuntu 16.04/18.04/20.04

Apache HTTP worker is one of the most mainstream web workers on the planet. It is an open-source and cross-stage HTTP worker that controls an enormous level of the Internet’s sites. Apache gives numerous incredible highlights that can be reached out through extra modules.On the off chance that you are a site proprietor or framework […]

How To Secure Nginx with Let’s Encrypt on Ubuntu 16.04 | 18.04 | 20.04

We should Let’s Encrypt is a Certificate Authority (CA) that gives a simple method to acquire and introduce free TLS/SSL declarations, along these lines empowering encoded HTTPS on web servers. It rearranges the procedure by giving a product customer, Certbot, that endeavors to mechanize most (if not the entirety) of the necessary advances. At present, […]

Scroll to top