baptisteArno / typebot.io

💬 Typebot is a powerful chatbot builder that you can self-host.
https://typebot.io
Other
6.97k stars 1.9k forks source link

Streaming not working on Docker deployed app #1701

Open baptisteArno opened 1 month ago

baptisteArno commented 3 weeks ago

Working on docker-compose without proxy

baptisteArno commented 3 weeks ago

https://discord.com/channels/1155799591220953138/1257264634998685706

lewiswilliam commented 3 weeks ago

confirmed its working now

have updated the following in the docker compose file:

typebot-builder:
    labels:
      virtual.host: 'typebot.domain.com' # change to your domain name
      virtual.port: '3000'
      virtual.tls-email: 'admin@example.com' # change to your email
      virtual.proxy.directives: |
        flush_interval -1

  typebot-viewer:
    labels:
      virtual.host: 'bot.domain.com' # change to your domain name
      virtual.port: '3000'
      virtual.tls-email: 'admin@example.com' # change to your email
      virtual.proxy.directives: |
        flush_interval -1

the new setting added is:

virtual.proxy.directives: |
        flush_interval -1

It maybe a good idea to update it here - https://docs.typebot.io/self-hosting/deploy/docker