Hi,
I have a problem with Http in node.
I get timeout response on client but I receive the message correctly.
I don't understand why?
Can you help?
My environment :
nodered on docker swarm through traefik.
here is the compose:
version: '3'
services:
nodered:
image: nodered/node-red:2.1.3
volumes:
- /etc/localtime:/etc/localtime:ro
- /mnt/dockernfs/nodered/data/:/data
networks:
- traefik_net
deploy:
# placement:
# constraints:
# - node.hostname==docker1
replicas: 1
labels:
- "traefik.docker.network=traefik_net"
- "traefik.enable=true"
ports:
- 3456:3456
- 1882:1880
environment:
- TZ=Europe/Paris
# command: --no-healthcheck
networks:
traefik_net:
external: true
thanks