Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Do not follow the above "SSL Configuration in the delivered nginx proxy" instructions! Keep the ordinary HTTP setup!
  2. Instead follow only step 4-6 of the SSL Configuration with the server.conf instead. In that file change then the "location / " block so that it looks like:

    Code Block
        location / {
            proxy_pass http://default_upstream;
            proxy_set_header Host $host;
            proxy_set_header X-Forwarded-Proto https;
        }

    This is needed in order that translate5 recognizes that the application is running under https.

  3. Configure Translate5 as it would have SSL (runtimeOptions.server.protocol = https://) and run autodiscovery to configure messagebus correctly.
    Jump into the php container and call the autoconfiguration:

    Code Block
    docker-compose exec php bash
    t5 config runtimeOptions.server.protocol = "https://"
    t5 service:auto -a -s frontendmessagebus


...