Info

Im Rahmen der Synapse-Admin ( https://github.com/Awesome-Technologies/synapse-admin ) Installation war noch ein Reversed Proxy mit IP Beschränkung und automatischem Letsencrypt Zertifikat notwendig. Mit Caddy lässt sich das einfach realisieren.


  # KMJ.at / Karl M. Joch
  # Caddy will automatically obtain ACME certs for domains
  my.domain.com {
    root * /usr/local/www/caddy
    @internal {
      remote_ip IP1 IP2 IP3
    }
    handle @internal {
      reverse_proxy localhost:PORT_des_DIENSTES
    }
  }