92 lines
2.8 KiB
Ruby
92 lines
2.8 KiB
Ruby
class Caddy < Formula
|
|
desc "Powerful, enterprise-ready, open source web server with automatic HTTPS"
|
|
homepage "https://caddyserver.com/"
|
|
url "https://github.com/caddyserver/caddy/archive/v2.1.1.tar.gz"
|
|
sha256 "77beb13b39b670bfe9e0cc1c71b720d5b037cca60e1426a9a485bbfae34ba8d2"
|
|
license "Apache-2.0"
|
|
revision 1
|
|
head "https://github.com/caddyserver/caddy.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
rebuild 2
|
|
sha256 "c623c1ab4422a4fc4cfe49603ee0eebd64ed8c54d195d8a36bf59cea08d0325f" => :catalina
|
|
sha256 "622c848d3aedd4e8b6cfbf833162f7f021ab6473f08887f79bd30966e76e7de5" => :mojave
|
|
sha256 "bb225be8318a5c99d1cce3e776d2b9f49acd3ccb06739935bc50d5d7c2d182e2" => :high_sierra
|
|
end
|
|
|
|
depends_on "go@1.14" => :build
|
|
|
|
resource "xcaddy" do
|
|
url "https://github.com/caddyserver/xcaddy/archive/v0.1.3.tar.gz"
|
|
sha256 "160244a67fca5a9ba448b98f4a94c6023e9ac64e3456a76ceea444d7a1f00767"
|
|
end
|
|
|
|
def install
|
|
revision = build.head? ? version.commit : "v#{version}"
|
|
|
|
resource("xcaddy").stage do
|
|
system "go", "run", "cmd/xcaddy/main.go", "build", revision,
|
|
"--with", "github.com/caddyserver/caddy/v#{version.major}=#{buildpath}",
|
|
"--output", bin/"caddy"
|
|
end
|
|
end
|
|
|
|
plist_options manual: "caddy run --config #{HOMEBREW_PREFIX}/etc/Caddyfile"
|
|
|
|
def plist
|
|
<<~EOS
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/caddy</string>
|
|
<string>run</string>
|
|
<string>--config</string>
|
|
<string>#{etc}/Caddyfile</string>
|
|
<string>--resume</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>StandardOutPath</key>
|
|
<string>#{var}/log/caddy.log</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>#{var}/log/caddy.log</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
port1 = free_port
|
|
port2 = free_port
|
|
|
|
(testpath/"Caddyfile").write <<~EOS
|
|
{
|
|
admin 127.0.0.1:#{port1}
|
|
}
|
|
|
|
http://127.0.0.1:#{port2} {
|
|
respond "Hello, Caddy!"
|
|
}
|
|
EOS
|
|
|
|
fork do
|
|
exec bin/"caddy", "run", "--config", testpath/"Caddyfile"
|
|
end
|
|
sleep 2
|
|
|
|
assert_match "\":#{port2}\"",
|
|
shell_output("curl -s http://127.0.0.1:#{port1}/config/apps/http/servers/srv0/listen/0")
|
|
assert_match "Hello, Caddy!", shell_output("curl -s http://127.0.0.1:#{port2}")
|
|
|
|
assert_match version.to_s, shell_output("#{bin}/caddy version")
|
|
end
|
|
end
|