Skip to content

Apache force_https

Endkind edited this page Mar 10, 2025 · 2 revisions

Force HTTPS Version / Installation

This version of the Docker Compose configuration serves the Laravel application over HTTPS only and redirects HTTP requests to HTTPS.

Installation

  1. Clone the repository:

    git clone https://github.com/Endkind/laravel_docker.git
    cd laravel_docker
  2. Copy the files into your existing Laravel project:

    cp -r apache/force_https/* /path/to/your/laravel-project
    cd /path/to/your/laravel-project
  3. Place valid SSL certificates in the ssl folder:

    cp /path/to/your/ssl.pem ssl/
    cp /path/to/your/ssl.key ssl/
  4. Create an .env file based on the pre-configured .env.docker file and adjust the environment variables as needed:

    cp .env.docker .env
  5. Start the Docker containers:

    docker-compose up -d
Clone this wiki locally