© 2023 Hashnode
#webserver
Quick'n'dirty SSL certificate generation with OpenSSL: openssl genrsa -out pkey.pem 2048 openssl req -new -x509 -days 3650 -key pkey.pem -out cert.pem NOTE: When asked for "Common Name (e.g. server …
To host a website from your own computer, you'll need a few tools and follow these general steps: Web Server Software: You need web server software to serve your website files to visitors. Some popul…
NGINX is a popular open-source web server, reverse proxy, and load balancer software. It was first released in 2004 and has since become a widely used tool for serving web content and managing web tra…
As we go up the ladders of engineering levels, we need to understand the internal working of the software, tools, and libraries that we use in our day-to-day lives. This improves our ability to use them efficiently and also helps us to debu…
WEB SERVER A web server is a piece of software that is responsible for delivering web content to users over the internet. It's essentially the backbone of the internet, serving as the intermediary between web browsers and the websites they …
When I enter https://www.google.com in my browser, a series of complex procedures are automatically enacted, ending with the browser's display of Google's homepage with the iconic dynamic search box. …
Have you ever stopped to think about what happens behind the scenes when you type a URL into your browser and press enter? It may seem like a simple process, but a lot is going on under the hood. From…
In this blog, we will deploy/host the Todo application on an AWS EC2 instance using the NGINX webserver. What are Web servers and NGINX? What are Web servers? Web servers are the servers that serve th…
ARM (Apache, PHP, MySQL) Definition To implement a web service, a web server, WAS, and a database are required, and a term used to refer to the combination of Apache, PHP, and MySQL, which were mainly used, is ARM (Apache, PHP, MySQL). As o…
What is Apache Server? The Apache HTTP Server is a free and open-source cross-platform web server software, released under the terms of Apache License 2.0. Apache is developed and maintained by an open community of developers under the ausp…