🔗Custom domain + HTTPS
Use a custom domain with Twake
We do not offer the possibility to edit the nginx configuration present in the docker-compose containers yet. To enable https you first need to install nginx and configure on your machine.
Your nginx installation will be used to forward the requests from https to the docker-compose http port.
The last step is to tell Twake that the frontend is accessed from a different domain and protocol to handle the redirections.
Use port 80 or 443 over https
To use 443 create a new nginx install and attach a proxy to port 8000 + certauto. If you use Apache2 go on the Apache2 configuration page.
Follow this thread if you have issues with websockets and reverse proxy: https://community.twake.app/t/twake-on-docker-behind-apache-proxy/78
Configure domain name
You must edit the configuration in both configuration/frontend/environment.ts
and configuration/backend/Parameters.php
Dont forget to restart your docker-compose 😉 and rebuild the frontend:
docker-compose exec nginx yarn build
Last updated