Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Traefik Configuration #893

Open
slash5k1 opened this issue Jan 25, 2025 · 0 comments
Open

Traefik Configuration #893

slash5k1 opened this issue Jan 25, 2025 · 0 comments

Comments

@slash5k1
Copy link

Not a bug but a thank you to the good work published in the PR #684 where I was able to get traefik to proxy the discovery service.

example compose file:

  syncthing-discosrv:
    image: syncthing/discosrv:1.29
    container_name: syncthing-discosrv
    volumes:
      - syncthing-discover:/var/stdiscosrv
    ports:
      - 8880:8443
    restart: unless-stopped
    entrypoint: ["/bin/stdiscosrv", "--http", "--debug"]

example traefik file:

http:
  routers:
    syncthing-discovery-router:
      rule: Host(`syncthing-discovery.example.com`)
      service: syncthing-discovery-service
      entryPoints:
      - websecure
      tls:
        options: syncthing-discosrv
      middlewares:
        - syncthing-discovery-headers
  services:
    syncthing-discovery-service:
      loadBalancer:
        servers:
        - url: http://10.0.0.10:8880
  middlewares:
    syncthing-discovery-headers:
      passtlsclientcert:
        pem: true
tls:
  options:
    syncthing-discosrv:
      clientAuth:
#       clientAuthType: RequireAnyClientCert # this was the example in the PR however i found the option below to work
        clientAuthType: RequestClientCert
  certificates:
  - certFile: /etc/traefik/ssl/example.com.crt
    keyFile: /etc/traefik/ssl/example.com.key

Hopefully this will help others and maybe the devs will publish the traefik config into the documentation

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant