Issue reproducer

An attempt to reproduce dunglas/symfony-docker#704 issue.

hello page

Configuration

  1. Create a .env.local file with content
    SERVER_NAME=192.168.xx.xx:80
    APP_SECRET=ChangeMe
    CADDY_MERCURE_JWT_SECRET=ChangeThisMercureHubJWTSecretKey
  2. Build the project image
    docker compose -f compose.yaml -f compose.prod.yaml --env-file .env --env-file .env.local build php
  3. Run the project
    docker compose -f compose.yaml -f compose.prod.yaml --env-file .env --env-file .env.local up -d php

Usage

  1. Open project's hello page http://192.168.xx.xx/hello
  2. Enter message you line to send in the <textarea> field
  3. Click to submit button

Expected behaviour

The submitted message will be shown in the Messages section on the same page.