mirror of
https://github.com/caddyserver/caddy.git
synced 2025-02-19 06:18:54 +01:00
* WIP: acmez v2, CertMagic, and ZeroSSL issuer upgrades * caddytls: ZeroSSLIssuer now uses ZeroSSL API instead of ACME * Fix go.mod * caddytls: Fix automation related to managers (fix #6060) * Fix typo (appease linter) * Fix HTTP validation with ZeroSSL API
17 lines
407 B
Bash
Executable file
17 lines
407 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# USAGE:
|
|
# go run -exec ./setcap.sh main.go <args...>
|
|
#
|
|
# (Example: `go run -exec ./setcap.sh main.go run --config caddy.json`)
|
|
#
|
|
# For some reason this does not work on my Arch system, so if you find that's
|
|
# the case, you can instead do:
|
|
#
|
|
# go build && ./setcap.sh ./caddy <args...>
|
|
#
|
|
# but this will leave the ./caddy binary laying around.
|
|
#
|
|
|
|
sudo setcap cap_net_bind_service=+ep "$1"
|
|
"$@"
|