Sign inSign up

benborla/melis-apache2

By benborla

•Updated about 2 years ago

Optimized config, essential modules for peak performance & compatibility.

Image
Networking
0

162

benborla/melis-apache2 repository overview

⁠Apache2 for Melis Platform

This Docker image provides a customized Apache2 server specifically tailored for use with Melis Platform. It includes optimized configurations and necessary modules to ensure optimal performance and compatibility with Melis Platform applications.

⁠Features

  • Based on the official httpd:2.4 image
  • Pre-configured for Melis Platform requirements
  • Enabled modules: rewrite, deflate, proxy, proxy_fcgi
  • Optimized mod_deflate settings for improved performance
  • Custom virtual host configuration
  • Configured for seamless integration with PHP-FPM

⁠Usage

To use this image with your Melis Platform application, we recommend using Docker Compose. Here's an example docker-compose.yml configuration:

version: '3'
services:
  apache:
    image: benborla/melis-apache2:latest
    ports:
      - "80:80"
    volumes:
      - .:/var/www/html
    depends_on:
      - php
    networks:
      - your-app-network

  # Add other services (like php, database, etc.) as needed

networks:
  your-app-network:
    driver: bridge

Make sure to adjust the volume mapping and network configuration according to your project structure and requirements.

To start your services, run:

docker-compose up -d

For more detailed instructions and configuration options, please refer to the Melis Platform documentation.

⁠Support

Please open an issue on our GitHub repository for matters related to this Docker image. Please refer to the official Melis Platform support channels for Melis Platform-specific questions.

Tag summary

Content type

Image

Digest

sha256:29a4b82b4…

Size

56.6 MB

Last updated

about 2 years ago

docker pull benborla/melis-apache2