Page tree

Versions Compared

Key

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

...

Additional hints for experts regarding optional configuration steps

E-Mailing

By default sending of E-Mails is disabled in translate5 directly in the installation.ini.

For configuring and enabling E-Mails see: Mail server as SMTP


SSL Configuration in the delivered nginx proxy

  • In the proxy container by default SSL is disabled.
  • In order to enable SSL several steps are needed:
    1. expose port 443 in docker-compose.production.yml


      Code Block
              ports:
                  # EXPOSE PORT 80 and 443
                  - "80:80"
                  - "443:443" 


SSL Offloading

SSL Offloading to an external load balancer is possible, the load balancer must support / enable websockets.

...