Replies: 1 comment 1 reply
-
|
Me too! I'm trying to get it to work with Caddy but no luck. It works if I publish port 8080 and connect to http://myserver.home:8080 but when try to connect to https://shares.myserver.home the page is just blank! I'd really like to get it working with Caddy This is my Caddyfile entry: And this is how I start the SFTPGo container, using Podman: podman run -d --replace \
--hostname=sftpgo \
--name=sftpgo \
--network=applications \
--publish=8080:8080 \
--publish=2022:2022 \
docker.io/drakkan/sftpgo:alpine |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
hi
i'm trying to get access to sftpgo behind caddy, which will handle LE certs with acme. Any pointers on how to get it to work?
Here's my entry in caddyfile, i have a few other entries with the same format that generate certs for my other internal https services.
caddy is on another vm, sftpgo has its own container where it's installed using debian package (latest version). I can access internal_ip:8080 (sftpgo)
sftpgo.domain.com:443 {
log {
output stdout
}
reverse_proxy internal_ip:8080 {
flush_interval -1
transport http {
tls_insecure_skip_verify
}
}
}
any advice is appreciated
Beta Was this translation helpful? Give feedback.
All reactions