vendor/github.com/mholt/caddy/caddyhttp/proxy/reverseproxy.go:249:19: undefined: h2quic.RoundTripper
vendor/github.com/mholt/caddy/caddyhttp/proxy/reverseproxy.go:301:44: undefined: h2quic.RoundTripper
_Build process_
Go doesn't use dep yet for managing vendor libs. Rather, all required libs are part of the repo.
You need to omit the dep part of your step and you should not have issues.
@abiosoft Thanks for the tip. One of the reasons I started using dep; and have success with it before; is because otherwise I'd have to do a "go get" on ~20 other plugins for my build process. Please advise.
If you have docker installed, you can leverage my builder script for generating Caddy binaries.
It is unofficial, but it works for most people. The official way is to go through https://caddyserver.com/download.
I can modify the script to work without docker but everyone seems to be using docker.
@abiosoft I'll have to give that a try. Thanks!
@abiosoft that worked. Thanks!