The Apache HTTP Server Project is dedicated to developing and maintaining a robust, open-source HTTP server for modern operating systems like UNIX and Windows. Launched in 1995, it has been the most popular web server on the internet since 1996, a testament to its stability and performance.
The core goal is to provide a secure, efficient, and extensible server that aligns with current HTTP standards. Its modular architecture allows for a high degree of customization and extension, making it adaptable to a wide variety of needs. Whether you are hosting a simple website or a complex web application, this server provides the reliability and features required for professional web hosting.
services:
web:
image: httpd:latest
container_name: apache-web-server
ports:
- "8080:80"
volumes:
- ./public-html:/usr/local/apache2/htdocs/
restart: unless-stopped
# The official Apache HTTP Server (httpd) image does not require any sensitive environment variables by default.
# If you configure custom authentication or proxy settings later, you can store those secrets here.
Auto-fetched about 19 hours ago
Auto-fetched about 19 hours ago