Merge pull request #204 from mikeroyal/mikeroyal-patch-174

Added Web servers section.
This commit is contained in:
Michael Royal 2023-03-24 00:38:48 -07:00 committed by GitHub
commit b837b677fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,6 +26,7 @@
* [Containers](https://github.com/mikeroyal/Self-Hosting-Guide#containers)
* [CI/CD](https://github.com/mikeroyal/Self-Hosting-Guide#cicd)
* [Development](https://github.com/mikeroyal/Self-Hosting-Guide#development)
* [Web servers](#web-servers)
* [Automation](#automation)
* [Configuration Management](#Configuration-Management)
* [Cloud Storage](#cloud-storage)
@ -370,6 +371,35 @@ Most self-hosted software can be installed using [Docker](https://en.wikipedia.o
[krunvm](https://github.com/containers/krunvm) is a CLI-based utility for creating microVMs from OCI images, using [libkrun](https://github.com/containers/libkrun) and [buildah](https://github.com/containers/buildah).
### Web servers
[Back to The Top](#table-of-contents)
**Web servers**
[Apache](https://httpd.apache.org/) - Most popular web server.
[Caddy](https://caddyserver.com/) - The HTTP/2 Web Server with Fully Managed TLS.
[Cherokee](https://cherokee-project.com/) - Lightweight, high-performance web server/reverse proxy.
[Lighttpd](https://www.lighttpd.net/) - Web server more optimized for speed-critical environments.
[Nginx](https://nginx.org/) - Reverse proxy, load balancer, HTTP cache, and web server.
[uWSGI](https://github.com/unbit/uwsgi/) - The uWSGI project aims at developing a full stack for building hosting services.
**Web Performance**
[HAProxy](https://www.haproxy.org/) - Software based load Balancing, SSL offloading and performance optimization, compression, and general web routing.
[Squid](https://www.squid-cache.org/) - Caching proxy for the web supporting HTTP, HTTPS, FTP, and more.
[Traefik](https://traefik.io/) - Taefik is a modern HTTP reverse proxy and load balancer made to deploy microservices with ease.
[Varnish](https://www.varnish-cache.org/) - HTTP based web application accelerator focusing on optimizing caching and compression.
### Automation
[Back to the Top](#table-of-contents)