Caddy s3 website (Nomad)

Overview

This is a caddy jail that can be deployed via nomad.

You need to pass in the IP addresses and bucket name for s3 objectstore, and caddy will serve the files.

For more details about nomad images, see about potluck.

Since the service is expected to be published via consul and a web proxy like traefik, plus frontend haproxy no HTTPS configuration is specified in nginx as it is expected that this is happening in the web proxy. HTTPS is merely enabled.

Installation

Prepare Minio

A minio bucket needs to exist with the website content before running this image.

This image will automatically load-balance between multiple minio servers for this specific bucket.

# set minio variables
env MINIO_ACCESS_KEY="ACCESSKEY"
env MINIO_SECRET_KEY="PASSWORD"

# set alias
minio-client alias set minio1 https://x.x.x.x:9000 ACCESSKEY PASSWORD --api S3v4  --insecure --config-dir /root/.minio-client/

# create default bucket
minio-client --insecure mb --config-dir /root/.minio-client/ --with-lock minio1/default

# create website bucket
minio-client --insecure mb --config-dir /root/.minio-client/ minio1/website-bucket

(todo: add steps for authentication)

# set anonymous download policy
minio-client --insecure policy set download minio1/website-bucket

# recursively copy website files to bucket
minio-client --insecure cp -r /path/to/website minio1/website-bucket/

Secure front end

This image runs on port 443, with automatic certificate management. It is expected to be run behind a proxy.

Options

You can pass in parameters to the image to set variables.

BUCKET is the name of the bucket to access, and can be set with -b and the bucket name.

DOMAIN is the domain name of the site. You can set this with the -d parameter and the domain name.

EMAIL is the email address to use for SSL certificate registration. You can set this with the -e parameter and email address.

SERVER is the S3 server. You can also set this with the -h parameter followed by the S3 host..

SELFSIGNED is optional and enables obtaining the self-signed CA certicate from minio into the local store. Enable with -s and any value.

ALERTIP is an optional parameter for the IP address of an alertmanager instance, for sending notices of certificate expiry.

Nomad Job File Samples

The following example job uses 1 self-signed minio server.

job "example" {
  datacenters = ["datacenter"]
  type        = "service"

  group "group1" {
    count = 1

    network {
      port "http" {
        static = 28000
      }
    }

    task "www1" {
      driver = "pot"

      service {
        tags = ["caddy", "www"]
        name = "caddy-s3-service"
        port = "http"

         check {
            type     = "tcp"
            name     = "tcp"
            interval = "60s"
            timeout  = "30s"
          }
      }

      config {
        image = "https://potluck.honeyguide.net/caddy-s3-nomad"
        pot = "caddy-s3-nomad-amd64-14_3"
        tag = "0.24.1"
        command = "/usr/local/bin/cook"
        args = ["-h","s3.my.host","-b","bucketname","-d","domainname","-e","email@add.com","-s","yes","-x","alertmanager-ip"]
		mount = [
          "/path/to/dataset/caddyimage:/mnt"
        ]
        port_map = {
          http = "443"
        }
      }

      resources {
        cpu = 200
        memory = 64
      }
    }
  }
}

Make sure the mounted-in dataset exists, SSL certificate files are saved to /mnt.

Getting Started

How To Use The Ready-Made Image

FreeBSD 14.3:
pot import -p caddy-s3-nomad-amd64-14_3 -t 0.24.1 -U https://potluck.honeyguide.net/caddy-s3-nomad

With Signify Verification:
fetch https://potluck.honeyguide.net/potluck.pub; pot import -p caddy-s3-nomad-amd64-14_3 -t 0.24.1 -C potluck.pub -U https://potluck.honeyguide.net/caddy-s3-nomad

If you don’t want to use the default pot bridged network configuration but instead need an individual network setup (e.g. assign a host IP address), after importing it you can simply clone the jail like that (em0 is the host network adapter in this example):
pot clone -P caddy-s3-nomad-amd64-14_3 -p my-cloned-jail -N alias -i "em0|10.10.10.10"

Note: Some images might require specific network configuration, double check the Overview-chapter at the top.

Alternatively: Create a Jail With This Flavour Yourself

1. Create Flavour Files

Save all files and directories from https://codeberg.org/bsdpot/potluck/tree/master/caddy-s3-nomad to /usr/local/etc/pot/flavours/

2. Create Jail From Flavour

Run
pot create -b <FreeBSD Version> -p <jailname> -t single -N public-bridge -f fbsd-update

with your FreeBSD version (e.g. 14.3) and the name your jail should get.

Note: Some images might require specific network configuration, double check the Overview-chapter at the top.

Version History

0.24

  • Version bump for new base image
  • Set ports sources for Perl5.42 and Go124

0.23

  • Version bump for new base image

0.22

  • Version bump for new base image
  • Set ports to 2025Q3

0.21

  • Version bump for new base image

0.20

  • Version bump for new base image
  • Switch to 2025Q2 for ports build step

0.19

  • Version bump for new base image

0.18

  • Version bump for new base image
  • Add certificate expiry scripts for alertmanager notices

0.17

  • Version bump for new base image
  • Update to 2025Q1 for pkg sources
  • Update for rsync security issue
  • Fix switch to latest over quarterly

0.16

  • Version bump for new base image 14.2

0.15

  • Version bump for new base image

0.14

  • Version bump for new base image 14.1
  • Extra steps to trim image size

0.13

  • Version bump for new base image

0.12

  • Version bump for new base image

0.11

  • Version bump for new base image
  • Install lang/go instead of specific go121

0.10

  • Version bump for new base image

0.9

  • Version bump for new base image
  • Update go package to go121
  • Fix perl version 5.36
  • Update certificate renewal script

0.8

  • Version bump for new base image
  • FBSD14 base image

0.7

  • Version bump for new base image
  • Remove authentication, proceed with image using anonymous download only

0.6

  • Version bump for new base image

0.5

  • Version bump for new base image
  • use acme.sh for certificate registration, remove autossl from caddy
  • Update README and example job
  • Include package acme.sh

0.4

  • Version bump for new base image
  • Adjustments to caddyfile

0.3

  • Change s3 addon to caddy-s3-proxy
  • Use credentials file
  • Update Caddyfile

0.2

  • Version bump for new base image
  • Adjustments to caddyfile because “unrecognized directive: storage”
  • Remove domain name from Caddyfile, then caddy starts
  • Add port for S3 to Caddyfile, add back domain after S3 config
  • More adjustments to Caddyfile
  • Fix readme for invalid two server info

0.1

  • Version bump for new base image

0.0

  • Initial commit
  • Starting a caddy-s3-nomad image to use authentication to access a repo

These images were built on Wed Oct 1 01:47:26 UTC 2025

Manual Image Download Links

caddy-s3-nomad-amd64-14_3_0.24.1.xz ( )
caddy-s3-nomad-amd64-14_3_0.24.1.xz.skein ( ) caddy-s3-nomad-amd64-14_3_0.24.1.xz.skein.sig ( ) caddy-s3-nomad-amd64-14_3_0.24.1.xz.meta ( )

Jenkins Pot Creation Logs

caddy-s3-nomad-amd64-14_3_0.24.1:


caddy-s3-nomad/caddy-s3-nomad:
set-attribute -A persistent -V OFF
set-attribute -A no-rc-script -V ON
copy-in -s /usr/local/etc/pot/flavours/caddy-s3-nomad.d/local -d /root/.pot_local
caddy-s3-nomad/caddy-s3-nomad.sh:
#!/bin/sh

# Based on POTLUCK TEMPLATE v3.0
# Altered by Michael Gmelin
#
# EDIT THE FOLLOWING FOR NEW FLAVOUR:
# 1. RUNS_IN_NOMAD - true or false
# 2. If RUNS_IN_NOMAD is false, can delete the <flavour>+4 file, else
#    make sure pot create command doesn't include it
# 3. Create a matching <flavour> file with this <flavour>.sh file that
#    contains the copy-in commands for the config files from <flavour>.d/
#    Remember that the package directories don't exist yet, so likely copy
#    to /root
# 4. Adjust package installation between BEGIN & END PACKAGE SETUP
# 5. Adjust jail configuration script generation between BEGIN & END COOK
#    Configure the config files that have been copied in where necessary

# Set this to true if this jail flavour is to be created as a nomad
# (i.e. blocking) jail.
# You can then query it in the cook script generation below and the script
# is installed appropriately at the end of this script
RUNS_IN_NOMAD=true

# set the cook log path/filename
COOKLOG=/var/log/cook.log

# check if cooklog exists, create it if not
if [ ! -e $COOKLOG ]
then
    echo "Creating $COOKLOG" | tee -a $COOKLOG
else
    echo "WARNING $COOKLOG already exists"  | tee -a $COOKLOG
fi
date >> $COOKLOG

# -------------------- COMMON ---------------

STEPCOUNT=0
step() {
  STEPCOUNT=$(("$STEPCOUNT" + 1))
  STEP="$*"
  echo "Step $STEPCOUNT: $STEP" | tee -a $COOKLOG
}

exit_ok() {
  trap - EXIT
  exit 0
}

FAILED=" failed"
exit_error() {
  STEP="$*"
  FAILED=""
  exit 1
}

set -e
trap 'echo ERROR: $STEP$FAILED | (>&2 tee -a $COOKLOG)' EXIT

# -------------- BEGIN PACKAGE SETUP -------------

step "Bootstrap package repo"
mkdir -p /usr/local/etc/pkg/repos
# shellcheck disable=SC2016
echo 'FreeBSD: { url: "pkg+http://pkg.FreeBSD.org/${ABI}/latest" }' \
    >/usr/local/etc/pkg/repos/FreeBSD.conf
# remove above and add back below for quarterlies
# only modify repo if not already done in base image
#test -e /usr/local/etc/pkg/repos/FreeBSD.conf || \
#  echo 'FreeBSD: { url: "pkg+http://pkg.FreeBSD.org/${ABI}/quarterly" }' \
#    >/usr/local/etc/pkg/repos/FreeBSD.conf
ASSUME_ALWAYS_YES=yes pkg bootstrap
# added for images with switch to latest
ASSUME_ALWAYS_YES=yes pkg update

step "Touch /etc/rc.conf"
touch /etc/rc.conf

# this is important, otherwise running /etc/rc from cook will
# overwrite the IP address set in tinirc
step "Remove ifconfig_epair0b from config"
# shellcheck disable=SC2015
sysrc -cq ifconfig_epair0b && sysrc -x ifconfig_epair0b || true

step "Disable sendmail"
service sendmail onedisable || true

step "Create /usr/local/etc/rc.d"
mkdir -p /usr/local/etc/rc.d

step "Clean freebsd-update"
rm -rf /var/db/freebsd-update
mkdir -p /var/db/freebsd-update

step "Install package openssl"
pkg install -y openssl

# necessary if installing curl now
step "Install package ca_root_nss"
pkg install -y ca_root_nss

step "Install package curl"
pkg install -y curl

step "Install package jo"
pkg install -y jo

step "Install package bash"
pkg install -y bash

step "Install package rsync"
pkg install -y rsync

step "Install package jq"
pkg install -y jq

step "Install package nano"
pkg install -y nano

step "Install package sudo"
pkg install -y sudo

step "Install package unzip"
pkg install -y unzip

step "Install package acme.sh"
pkg install -y acme.sh

step "Install package git-lite"
pkg install -y git-lite

step "Install package lang/go"
pkg install -y lang/go



# -------------- END PACKAGE SETUP -------------

# -------------- START PORTS SETUP--------------

echo "BATCH=yes" > /etc/make.conf
echo "DEFAULT_VERSIONS+=ssl=openssl" >> /etc/make.conf
# removing, not working as expected
#echo "CADDY_CUSTOM_PLUGINS=github.com/ss098/certmagic-s3" >> /etc/make.conf
# new, trying this one
echo "CADDY_CUSTOM_PLUGINS=github.com/lindenlab/caddy-s3-proxy" >> /etc/make.conf

step "Make directory /usr/ports"
mkdir -p /usr/ports

step "Init packages git branch main"
cd /usr/ports
git init -b main

step "Add packages remote origin"
git remote add origin https://git.freebsd.org/ports.git

step "Git sparse checkout init"
git sparse-checkout init

step "Checkout ports and supporting files"
git sparse-checkout set GIDs UIDs \
  Mk/ \
  Templates/ \
  Keywords/ \
  lang/perl5.42/ \
  security/openssl/ \
  ports-mgmt/pkg/ \
  lang/go124/ \
  lang/go-devel/ \
  lang/go/ \
  www/caddy/ \
  www/xcaddy/ \
  www/caddy-custom/

# checkout quarterly branch instead
# https://wiki.freebsd.org/Ports/QuarterlyBranch
#  "Branches are named according to the year (YYYY)
#   and quarter (Q1-4) they are created in.
#   For example, the quarterly branch created in
#   January 2016, is named 2016Q1."
# Quarterly in Aug 2023 is 2023Q3
step "Pull files"
#git pull --depth=1 origin 2023Q3
#git pull --depth=1 origin 2024Q2
#git pull --depth=1 origin 2024Q4
#git pull --depth=1 origin 2025Q1
#git pull --depth=1 origin 2025Q2
git pull --depth=1 origin 2025Q3

# go straight to building caddy-custom
#step "Build caddy"
#cd /usr/ports/www/caddy/
#make install clean BATCH=YES

# go straight to building caddy-custom
#step "Build xcaddy"
#cd /usr/ports/www/xcaddy/
#make install clean BATCH=YES

step "Build caddy-custom"
cd /usr/ports/www/caddy-custom/
make install clean BATCH=YES

step "Change directory to /root"
cd /root

step "Remove /usr/ports"
rm -rf /usr/ports

# --------------- CLEAN PACKAGES ---------------

step "Package autoremove"
pkg autoremove -y

step "Clean package installation"
pkg clean -ay

# -------------- END PACKAGE SETUP -------------
#
# Now generate the run command script "cook"
# It configures the system on the first run by creating the config file(s)
# On subsequent runs, it only starts sleeps (if nomad-jail) or simply exits
#

# this runs when image boots
# ----------------- BEGIN COOK ------------------

step "Clean cook artifacts"
rm -rf /usr/local/bin/cook /usr/local/share/cook

step "Install pot local"
tar -C /root/.pot_local -cf - . | tar -C /usr/local -xf -
rm -rf /root/.pot_local

step "Set file ownership on cook scripts"
chown -R root:wheel /usr/local/bin/cook /usr/local/share/cook
chmod 755 /usr/local/share/cook/bin/*

# ----------------- END COOK ------------------


# ---------- NO NEED TO EDIT BELOW ------------

step "Make cook script executable"
if [ -e /usr/local/bin/cook ]
then
    echo "setting executable bit on /usr/local/bin/cook" | tee -a $COOKLOG
    chmod u+x /usr/local/bin/cook
else
    exit_error "there is no /usr/local/bin/cook to make executable"
fi

#
# There are two ways of running a pot jail: "Normal", non-blocking mode and
# "Nomad", i.e. blocking mode (the pot start command does not return until
# the jail is stopped).
# For the normal mode, we create a /usr/local/etc/rc.d script that starts
# the "cook" script generated above each time, for the "Nomad" mode, the cook
# script is started by pot (configuration through flavour file), therefore
# we do not need to do anything here.
#

# Create rc.d script for "normal" mode:
step "Create rc.d script to start cook"
echo "creating rc.d script to start cook" | tee -a $COOKLOG

# shellcheck disable=SC2016
echo '#!/bin/sh
#
# PROVIDE: cook
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
. /etc/rc.subr
name="cook"
rcvar="cook_enable"
load_rc_config $name
: ${cook_enable:="NO"}
: ${cook_env:=""}
command="/usr/local/bin/cook"
command_args=""
run_rc_command "$1"
' > /usr/local/etc/rc.d/cook

step "Make rc.d script to start cook executable"
if [ -e /usr/local/etc/rc.d/cook ]
then
  echo "Setting executable bit on cook rc file" | tee -a $COOKLOG
  chmod u+x /usr/local/etc/rc.d/cook
else
  exit_error "/usr/local/etc/rc.d/cook does not exist"
fi

if [ "$RUNS_IN_NOMAD" != "true" ]
then
  step "Enable cook service"
  # This is a non-nomad (non-blocking) jail, so we need to make sure the script
  # gets started when the jail is started:
  # Otherwise, /usr/local/bin/cook will be set as start script by the pot
  # flavour
  echo "enabling cook" | tee -a $COOKLOG
  service cook enable
fi

# -------------------- DONE ---------------
exit_ok

caddy-s3-nomad/caddy-s3-nomad+1:
caddy-s3-nomad/caddy-s3-nomad+1.sh:

caddy-s3-nomad/caddy-s3-nomad+2:
caddy-s3-nomad/caddy-s3-nomad+2.sh:

caddy-s3-nomad/caddy-s3-nomad+3:
caddy-s3-nomad/caddy-s3-nomad+3.sh:

caddy-s3-nomad/caddy-s3-nomad+4:
set-cmd -c "/usr/local/bin/cook"
caddy-s3-nomad/caddy-s3-nomad+4.sh:
=====>  Create conf dir (/mnt/srv/pot/jails/caddy-s3-nomad-amd64-14_3/conf)
=====>  Cloning freebsd-potluck-amd64-14_3_0_0_41 with snap 
=====>  clone zroot/srv/pot/jails/freebsd-potluck-amd64-14_3_0_0_41/m@1759255027 into zroot/srv/pot/jails/caddy-s3-nomad-amd64-14_3/m
=====>  Flavour: fbsd-update
=====>  Starting caddy-s3-nomad-amd64-14_3 pot for the initial bootstrap
=====>  mount /mnt/srv/pot/jails/caddy-s3-nomad-amd64-14_3/m/tmp
defaultrouter: 10.192.0.1 -> 10.192.0.1
===>  Starting the pot caddy-s3-nomad-amd64-14_3
=====>  Pot caddy-s3-nomad-amd64-14_3 jail params are: allow.set_hostname=false allow.raw_sockets allow.socket_af allow.chflags exec.clean mount.devfs enforce_statfs=2 sysvshm=new sysvsem=new sysvmsg=new children.max=0 devfs_ruleset=4 stop.timeout=10 name=caddy-s3-nomad-amd64-14_3 host.hostname=caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net osrelease=14.3-RELEASE-p4 path=/mnt/srv/pot/jails/caddy-s3-nomad-amd64-14_3/m persist vnet vnet.interface=epair0b
ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr/local/lib/compat/pkg /usr/local/lib/compat/pkg
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=1008049<UP,LOOPBACK,RUNNING,MULTICAST,LOWER_UP> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet 127.0.0.1 netmask 0xff000000
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x6
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:cc:1a:fc:f3:0b
	inet 10.192.0.3 netmask 0xffc00000 broadcast 10.255.255.255
	groups: epair
	media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)
	status: active
	nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add net default: gateway 10.192.0.1
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Clearing /tmp (X related).
Updating /var/run/os-release done.
Creating and/or trimming log files.
Updating motd:.
Starting syslogd.
Starting sendmail_submit.
Starting sendmail_msp_queue.
Starting cron.

Wed Oct  1 01:31:18 UTC 2025
/usr/local/etc/pot/flavours/fbsd-update.sh -> /mnt/srv/pot/jails/caddy-s3-nomad-amd64-14_3/m/tmp/fbsd-update.sh
=====>  Executing fbsd-update script on caddy-s3-nomad-amd64-14_3
src component not installed, skipped
Looking up update.FreeBSD.org mirrors... 3 mirrors found.
Fetching public key from update1.freebsd.org... done.
Fetching metadata signature for 14.3-RELEASE from update1.freebsd.org... done.
Fetching metadata index... done.
Fetching 2 metadata files... done.
Inspecting system... done.
Preparing to download files... done.

No updates needed to update system to 14.3-RELEASE-p4.
No updates are available to install.
=====>  Stop the pot caddy-s3-nomad-amd64-14_3
=====>  Remove p468dc84644ebd epair network interfaces
=====>  unmount /mnt/srv/pot/jails/caddy-s3-nomad-amd64-14_3/m/tmp
=====>  unmount /mnt/srv/pot/jails/caddy-s3-nomad-amd64-14_3/m/dev
=====>  Flavour: caddy-s3-nomad
=====>  Executing caddy-s3-nomad pot commands on caddy-s3-nomad-amd64-14_3
=====>  mount /mnt/srv/pot/jails/caddy-s3-nomad-amd64-14_3/m/tmp
=====>  Source /usr/local/etc/pot/flavours/caddy-s3-nomad.d/local copied in the pot caddy-s3-nomad-amd64-14_3
=====>  unmount /mnt/srv/pot/jails/caddy-s3-nomad-amd64-14_3/m/tmp
=====>  /mnt/srv/pot/jails/caddy-s3-nomad-amd64-14_3/m/dev is already unmounted
=====>  Starting caddy-s3-nomad-amd64-14_3 pot for the initial bootstrap
=====>  Setting pot caddy-s3-nomad-amd64-14_3 temporarily to persistent
=====>  mount /mnt/srv/pot/jails/caddy-s3-nomad-amd64-14_3/m/tmp
===>  Starting the pot caddy-s3-nomad-amd64-14_3
=====>  Pot caddy-s3-nomad-amd64-14_3 jail params are: allow.set_hostname=false allow.raw_sockets allow.socket_af allow.chflags exec.clean mount.devfs enforce_statfs=2 sysvshm=new sysvsem=new sysvmsg=new children.max=0 devfs_ruleset=4 stop.timeout=10 name=caddy-s3-nomad-amd64-14_3 host.hostname=caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net osrelease=14.3-RELEASE-p4 path=/mnt/srv/pot/jails/caddy-s3-nomad-amd64-14_3/m persist vnet vnet.interface=epair0b
add net default: gateway 10.192.0.1
ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr/local/lib/compat/pkg /usr/local/lib/compat/pkg
32-bit compatibility ldconfig path: /usr/lib32
Starting Network: lo0 epair0b.
lo0: flags=1008049<UP,LOOPBACK,RUNNING,MULTICAST,LOWER_UP> metric 0 mtu 16384
	options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
	inet 127.0.0.1 netmask 0xff000000
	inet6 ::1 prefixlen 128
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x6
	groups: lo
	nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
epair0b: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
	options=8<VLAN_MTU>
	ether 02:67:d2:86:0b:0b
	inet 10.192.0.3 netmask 0xffc00000 broadcast 10.255.255.255
	groups: epair
	media: Ethernet 10Gbase-T (10Gbase-T <full-duplex>)
	status: active
	nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add net default: gateway 10.192.0.1
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Clearing /tmp (X related).
Updating /var/run/os-release done.
Creating and/or trimming log files.
Updating motd:.
Starting syslogd.
Starting sendmail_submit.
Starting sendmail_msp_queue.
Starting cron.

Wed Oct  1 01:31:46 UTC 2025
/usr/local/etc/pot/flavours/caddy-s3-nomad.sh -> /mnt/srv/pot/jails/caddy-s3-nomad-amd64-14_3/m/tmp/caddy-s3-nomad.sh
=====>  Executing caddy-s3-nomad script on caddy-s3-nomad-amd64-14_3
WARNING /var/log/cook.log already exists
Step 1: Bootstrap package repo
pkg already bootstrapped at /usr/local/sbin/pkg
Updating FreeBSD repository catalogue...
pkg: Repository FreeBSD has a wrong packagesite, need to re-create database
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] Fetching meta.conf: . done
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] Fetching data.pkg: .......... done
Processing entries: .......... done
FreeBSD repository update completed. 36568 packages processed.
Updating FreeBSD-kmods repository catalogue...
FreeBSD-kmods repository is up to date.
All repositories are up to date.
Step 2: Touch /etc/rc.conf
Step 3: Remove ifconfig_epair0b from config
Step 4: Disable sendmail
sendmail_submit disabled in /etc/rc.conf
sendmail_msp_queue disabled in /etc/rc.conf
Step 5: Create /usr/local/etc/rc.d
Step 6: Clean freebsd-update
Step 7: Install package openssl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
Updating FreeBSD-kmods repository catalogue...
FreeBSD-kmods repository is up to date.
All repositories are up to date.
New version of pkg detected; it needs to be installed first.
The following 1 package(s) will be affected (of 0 checked):

Installed packages to be UPGRADED:
	pkg: 2.2.2 -> 2.3.1 [FreeBSD]

Number of packages to be upgraded: 1

12 MiB to be downloaded.
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching pkg-2.3.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Upgrading pkg from 2.2.2 to 2.3.1...
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting pkg-2.3.1: .......... done
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
Updating FreeBSD-kmods repository catalogue...
FreeBSD-kmods repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

Installed packages to be UPGRADED:
	openssl: 3.0.16,1 -> 3.0.17,1 [FreeBSD]

Number of packages to be upgraded: 1

6 MiB to be downloaded.
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching openssl-3.0.17,1.pkg: .......... done
Checking integrity... done (0 conflicting)
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Upgrading openssl from 3.0.16,1 to 3.0.17,1...
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting openssl-3.0.17,1: .......... done
Step 8: Install package ca_root_nss
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
Updating FreeBSD-kmods repository catalogue...
FreeBSD-kmods repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

Installed packages to be UPGRADED:
	ca_root_nss: 3.108 -> 3.115_2 [FreeBSD]

Number of packages to be upgraded: 1

275 KiB to be downloaded.
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching ca_root_nss-3.115_2.pkg: .......... done
Checking integrity... done (0 conflicting)
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Upgrading ca_root_nss from 3.108 to 3.115_2...
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting ca_root_nss-3.115_2: ....... done
Step 9: Install package curl
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
Updating FreeBSD-kmods repository catalogue...
FreeBSD-kmods repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

Installed packages to be UPGRADED:
	curl: 8.14.1 -> 8.15.0 [FreeBSD]

Number of packages to be upgraded: 1

2 MiB to be downloaded.
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching curl-8.15.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Upgrading curl from 8.14.1 to 8.15.0...
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting curl-8.15.0: .......... done
Step 10: Install package jo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
Updating FreeBSD-kmods repository catalogue...
FreeBSD-kmods repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 11: Install package bash
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
Updating FreeBSD-kmods repository catalogue...
FreeBSD-kmods repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

Installed packages to be UPGRADED:
	bash: 5.2.37 -> 5.3.3_1 [FreeBSD]

Number of packages to be upgraded: 1

2 MiB to be downloaded.
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching bash-5.3.3_1.pkg: .......... done
Checking integrity... done (0 conflicting)
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Upgrading bash from 5.2.37 to 5.3.3_1...
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting bash-5.3.3_1: .......... done
Step 12: Install package rsync
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
Updating FreeBSD-kmods repository catalogue...
FreeBSD-kmods repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

Installed packages to be UPGRADED:
	rsync: 3.4.1_2 -> 3.4.1_3 [FreeBSD]

Number of packages to be upgraded: 1

401 KiB to be downloaded.
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching rsync-3.4.1_3.pkg: .......... done
Checking integrity... done (0 conflicting)
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Upgrading rsync from 3.4.1_2 to 3.4.1_3...
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting rsync-3.4.1_3: .......... done
Step 13: Install package jq
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
Updating FreeBSD-kmods repository catalogue...
FreeBSD-kmods repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

Installed packages to be UPGRADED:
	jq: 1.8.0 -> 1.8.1 [FreeBSD]

Number of packages to be upgraded: 1

328 KiB to be downloaded.
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching jq-1.8.1.pkg: .......... done
Checking integrity... done (0 conflicting)
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Upgrading jq from 1.8.0 to 1.8.1...
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting jq-1.8.1: .......... done
Step 14: Install package nano
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
Updating FreeBSD-kmods repository catalogue...
FreeBSD-kmods repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

Installed packages to be UPGRADED:
	nano: 8.4 -> 8.6 [FreeBSD]

Number of packages to be upgraded: 1

678 KiB to be downloaded.
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching nano-8.6.pkg: .......... done
Checking integrity... done (0 conflicting)
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Upgrading nano from 8.4 to 8.6...
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting nano-8.6: .......... done
Step 15: Install package sudo
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
Updating FreeBSD-kmods repository catalogue...
FreeBSD-kmods repository is up to date.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed
Step 16: Install package unzip
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
Updating FreeBSD-kmods repository catalogue...
FreeBSD-kmods repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	unzip: 6.0_8 [FreeBSD]

Number of packages to be installed: 1

140 KiB to be downloaded.
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Fetching unzip-6.0_8.pkg: .......... done
Checking integrity... done (0 conflicting)
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Installing unzip-6.0_8...
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/1] Extracting unzip-6.0_8: .......... done
Step 17: Install package acme.sh
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
Updating FreeBSD-kmods repository catalogue...
FreeBSD-kmods repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	acme.sh: 3.1.1_1 [FreeBSD]
	socat: 1.8.0.3 [FreeBSD]

Number of packages to be installed: 2

The process will require 2 MiB more space.
454 KiB to be downloaded.
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching acme.sh-3.1.1_1.pkg: .......... done
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching socat-1.8.0.3.pkg: .......... done
Checking integrity... done (0 conflicting)
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/2] Installing socat-1.8.0.3...
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting socat-1.8.0.3: .......... done
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [2/2] Installing acme.sh-3.1.1_1...
===> Creating groups
Creating group 'acme' with gid '169'
===> Creating users
Creating user 'acme' with uid '169'
===> Creating homedir(s)
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting acme.sh-3.1.1_1: .......... done
=====
Message from acme.sh-3.1.1_1:

--
This script will create the following directories if they do not exist:

 ~acme/.acme.sh
 ~acme/certs

The script will also install ~acme/.acme.sh/account.conf.sample which has
sane defaults.  Copy this to ~acme/.acme.sh/account.conf and edit contents
to suit.

If you have EXAMPLES on:

* In the /usr/local/share/examples/acme.sh directory, you can find the dnsapi 
  scripts which will be useful if you decide to use dns-01 challenges. Also 
  included are the deploy scripts.

* A newsyslog.conf sample file is installed at 
  /usr/local/etc/newsyslog.conf.d/acme.sh.conf - you must modify it by
  at least uncommenting the line.

* If you run `newsyslog -NC` it will create the required logfiles.

* Please review /usr/local/share/examples/acme.sh/acme.sh-cron.d - instructions are
  contained in that file.
Step 18: Install package git-lite
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
Updating FreeBSD-kmods repository catalogue...
FreeBSD-kmods repository is up to date.
All repositories are up to date.
The following 3 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	expat: 2.7.2 [FreeBSD]
	git-lite: 2.51.0 [FreeBSD]
	pcre2: 10.45_1 [FreeBSD]

Number of packages to be installed: 3

The process will require 61 MiB more space.
10 MiB to be downloaded.
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/3] Fetching pcre2-10.45_1.pkg: .......... done
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [2/3] Fetching expat-2.7.2.pkg: .......... done
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [3/3] Fetching git-lite-2.51.0.pkg: .......... done
Checking integrity... done (0 conflicting)
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/3] Installing expat-2.7.2...
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/3] Extracting expat-2.7.2: .......... done
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [2/3] Installing pcre2-10.45_1...
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [2/3] Extracting pcre2-10.45_1: .......... done
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [3/3] Installing git-lite-2.51.0...
===> Creating groups
Creating group 'git_daemon' with gid '964'
===> Creating users
Creating user 'git_daemon' with uid '964'
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [3/3] Extracting git-lite-2.51.0: .......... done
=====
Message from git-lite-2.51.0:

--
If you installed the GITWEB option please follow these instructions:

In the directory /usr/local/share/examples/git/gitweb you can find all files to
make gitweb work as a public repository on the web.

All you have to do to make gitweb work is:
1) Please be sure you're able to execute CGI scripts in
   /usr/local/share/examples/git/gitweb.
2) Set the GITWEB_CONFIG variable in your webserver's config to
   /usr/local/etc/git/gitweb.conf. This variable is passed to gitweb.cgi.
3) Restart server.


If you installed the CONTRIB option please note that the scripts are
installed in /usr/local/share/git-core/contrib. Some of them require
other ports to be installed (perl, python, etc), which you may need to
install manually.
Step 19: Install package lang/go
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
Updating FreeBSD-kmods repository catalogue...
FreeBSD-kmods repository is up to date.
All repositories are up to date.
The following 2 package(s) will be affected (of 0 checked):

New packages to be INSTALLED:
	go: 1.24_12,2 [FreeBSD]
	go124: 1.24.7 [FreeBSD]

Number of packages to be installed: 2

The process will require 240 MiB more space.
49 MiB to be downloaded.
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/2] Fetching go-1.24_12,2.pkg: . done
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [2/2] Fetching go124-1.24.7.pkg: .......... done
Checking integrity... done (0 conflicting)
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/2] Installing go124-1.24.7...
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/2] Extracting go124-1.24.7: .......... done
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [2/2] Installing go-1.24_12,2...
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [2/2] Extracting go-1.24_12,2: .. done
Step 20: Make directory /usr/ports
Step 21: Init packages git branch main
Initialized empty Git repository in /usr/ports/.git/
Step 22: Add packages remote origin
Step 23: Git sparse checkout init
Step 24: Checkout ports and supporting files
Step 25: Pull files
From https://git.freebsd.org/ports
 * branch                2025Q3     -> FETCH_HEAD
 * [new branch]          2025Q3     -> origin/2025Q3
Step 26: Build caddy-custom
===>  License APACHE20 accepted by the user
===>   caddy-custom-2.10.0.2.0.4.4.1_4 depends on file: /usr/local/sbin/pkg - found
===> Fetching all distfiles required by caddy-custom-2.10.0.2.0.4.4.1_4 for building
===>  Extracting for caddy-custom-2.10.0.2.0.4.4.1_4
===>  Patching for caddy-custom-2.10.0.2.0.4.4.1_4
===>   caddy-custom-2.10.0.2.0.4.4.1_4 depends on executable: xcaddy - not found
===>  License APACHE20 accepted by the user
===>   xcaddy-0.4.4_1 depends on file: /usr/local/sbin/pkg - found
===>   xcaddy-0.4.4_1 depends on file: /usr/local/bin/go124 - found
=> v0.4.4.mod doesn't seem to exist in /usr/ports/distfiles/go/www_xcaddy/xcaddy-v0.4.4.
=> Attempting to fetch https://proxy.golang.org/github.com/caddyserver/xcaddy/@v/v0.4.4.mod
v0.4.4.mod                                             416  B 3664 kBps    00s
=> v0.4.4.zip doesn't seem to exist in /usr/ports/distfiles/go/www_xcaddy/xcaddy-v0.4.4.
=> Attempting to fetch https://proxy.golang.org/github.com/caddyserver/xcaddy/@v/v0.4.4.zip
v0.4.4.zip                                              78 kB  196 kBps    01s
===> Fetching all distfiles required by xcaddy-0.4.4_1 for building
===> Fetching github.com/caddyserver/xcaddy dependencies
# get https://proxy.golang.org/github.com/inconshreveable/mousetrap/@v/v1.1.0.mod
# get https://proxy.golang.org/github.com/akavel/rsrc/@v/v0.10.2.mod
# get https://proxy.golang.org/github.com/google/shlex/@v/v0.0.0-20191202100458-e7afc7fbc510.mod
# get https://proxy.golang.org/github.com/%21masterminds/semver/v3/@v/v3.3.0.mod
# get https://proxy.golang.org/github.com/akavel/rsrc/@v/v0.10.2.mod: 200 OK (0.726s)
# get https://proxy.golang.org/sumdb/sum.golang.org/supported
# get https://proxy.golang.org/github.com/google/shlex/@v/v0.0.0-20191202100458-e7afc7fbc510.mod: 200 OK (0.729s)
# get https://proxy.golang.org/github.com/%21masterminds/semver/v3/@v/v3.3.0.mod: 200 OK (0.729s)
# get https://proxy.golang.org/github.com/inconshreveable/mousetrap/@v/v1.1.0.mod: 200 OK (0.730s)
# get https://proxy.golang.org/sumdb/sum.golang.org/supported: 404 Not Found (0.359s)
# get https://sum.golang.org/lookup/github.com/akavel/rsrc@v0.10.2
# get https://sum.golang.org/lookup/github.com/google/shlex@v0.0.0-20191202100458-e7afc7fbc510
# get https://sum.golang.org/lookup/github.com/!masterminds/semver/v3@v3.3.0
# get https://sum.golang.org/lookup/github.com/inconshreveable/mousetrap@v1.1.0
# get https://sum.golang.org/lookup/github.com/!masterminds/semver/v3@v3.3.0: 200 OK (0.727s)
# get https://sum.golang.org/tile/8/0/x114/464
# get https://sum.golang.org/tile/8/0/x173/288.p/69
# get https://sum.golang.org/tile/8/2/002.p/164
# get https://sum.golang.org/tile/8/1/447
# get https://sum.golang.org/tile/8/2/001
# get https://sum.golang.org/tile/8/1/676.p/232
# get https://sum.golang.org/tile/8/3/000.p/2
# get https://sum.golang.org/lookup/github.com/google/shlex@v0.0.0-20191202100458-e7afc7fbc510: 200 OK (0.730s)
# get https://sum.golang.org/tile/8/0/x173/287
# get https://sum.golang.org/lookup/github.com/inconshreveable/mousetrap@v1.1.0: 200 OK (0.733s)
# get https://sum.golang.org/tile/8/0/x173/281
# get https://sum.golang.org/lookup/github.com/akavel/rsrc@v0.10.2: 200 OK (0.759s)
# get https://sum.golang.org/tile/8/0/x173/288
# get https://sum.golang.org/tile/8/1/676.p/252
# get https://sum.golang.org/tile/8/0/x173/308.p/44
# get https://sum.golang.org/tile/8/2/002.p/164: 200 OK (0.190s)
# get https://sum.golang.org/tile/8/2/001: 200 OK (0.217s)
# get https://sum.golang.org/tile/8/1/447: 200 OK (0.258s)
# get https://sum.golang.org/tile/8/0/x114/464: 200 OK (0.300s)
# get https://sum.golang.org/tile/8/0/x173/288.p/69: 200 OK (0.342s)
# get https://sum.golang.org/tile/8/0/x173/287: 200 OK (0.340s)
# get https://sum.golang.org/tile/8/1/676.p/232: 200 OK (0.381s)
# get https://sum.golang.org/tile/8/0/x173/281: 200 OK (0.419s)
# get https://sum.golang.org/tile/8/3/000.p/2: 200 OK (0.423s)
# get https://sum.golang.org/tile/8/0/x001/988
# get https://sum.golang.org/tile/8/2/000
# get https://sum.golang.org/tile/8/1/007
# get https://proxy.golang.org/github.com/josephspurrier/goversioninfo/@v/v1.4.1.mod
# get https://sum.golang.org/tile/8/0/x173/288: 200 OK (0.434s)
# get https://sum.golang.org/tile/8/0/x055/049
# get https://sum.golang.org/tile/8/1/215
# get https://sum.golang.org/tile/8/1/676.p/252: 200 OK (0.472s)
# get https://sum.golang.org/tile/8/0/x173/308.p/44: 200 OK (0.503s)
# get https://sum.golang.org/tile/8/0/x012/795
# get https://sum.golang.org/tile/8/1/049
# get https://proxy.golang.org/github.com/josephspurrier/goversioninfo/@v/v1.4.1.mod: 200 OK (0.180s)
# get https://sum.golang.org/lookup/github.com/josephspurrier/goversioninfo@v1.4.1
# get https://sum.golang.org/tile/8/2/000: 200 OK (0.189s)
# get https://sum.golang.org/tile/8/0/x001/988: 200 OK (0.203s)
# get https://sum.golang.org/tile/8/1/007: 200 OK (0.218s)
# get https://sum.golang.org/tile/8/0/x055/049: 200 OK (0.192s)
# get https://proxy.golang.org/github.com/spf13/cobra/@v/v1.8.1.mod
# get https://sum.golang.org/tile/8/1/215: 200 OK (0.204s)
# get https://proxy.golang.org/github.com/spf13/pflag/@v/v1.0.5.mod
# get https://sum.golang.org/tile/8/1/049: 200 OK (0.189s)
# get https://sum.golang.org/tile/8/0/x012/795: 200 OK (0.218s)
# get https://sum.golang.org/lookup/github.com/josephspurrier/goversioninfo@v1.4.1: 200 OK (0.197s)
# get https://sum.golang.org/tile/8/0/x115/016
# get https://sum.golang.org/tile/8/1/449
# get https://proxy.golang.org/github.com/spf13/cobra/@v/v1.8.1.mod: 200 OK (0.180s)
# get https://sum.golang.org/lookup/github.com/spf13/cobra@v1.8.1
# get https://proxy.golang.org/github.com/spf13/pflag/@v/v1.0.5.mod: 200 OK (0.180s)
# get https://sum.golang.org/lookup/github.com/spf13/pflag@v1.0.5
# get https://sum.golang.org/tile/8/1/449: 200 OK (0.189s)
# get https://sum.golang.org/tile/8/0/x115/016: 200 OK (0.219s)
# get https://sum.golang.org/lookup/github.com/spf13/cobra@v1.8.1: 200 OK (0.193s)
# get https://sum.golang.org/tile/8/0/x173/293
# get https://proxy.golang.org/github.com/stretchr/testify/@v/v1.6.1.mod
# get https://sum.golang.org/lookup/github.com/spf13/pflag@v1.0.5: 200 OK (0.188s)
# get https://sum.golang.org/tile/8/0/967
# get https://sum.golang.org/tile/8/1/003
# get https://proxy.golang.org/github.com/stretchr/testify/@v/v1.6.1.mod: 200 OK (0.180s)
# get https://sum.golang.org/lookup/github.com/stretchr/testify@v1.6.1
# get https://sum.golang.org/tile/8/0/x173/293: 200 OK (0.188s)
# get https://sum.golang.org/tile/8/0/x105/749
# get https://sum.golang.org/tile/8/1/413
# get https://sum.golang.org/tile/8/1/003: 200 OK (0.189s)
# get https://sum.golang.org/tile/8/0/967: 200 OK (0.197s)
# get https://sum.golang.org/lookup/github.com/stretchr/testify@v1.6.1: 200 OK (0.189s)
# get https://sum.golang.org/tile/8/0/x173/282
# get https://sum.golang.org/tile/8/1/413: 200 OK (0.189s)
# get https://sum.golang.org/tile/8/0/x105/749: 200 OK (0.197s)
# get https://proxy.golang.org/gopkg.in/yaml.v3/@v/v3.0.1.mod
# get https://proxy.golang.org/github.com/cpuguy83/go-md2man/v2/@v/v2.0.4.mod
# get https://sum.golang.org/tile/8/0/x173/282: 200 OK (0.189s)
# get https://sum.golang.org/tile/8/0/x005/005
# get https://sum.golang.org/tile/8/1/019
# get https://proxy.golang.org/github.com/cpuguy83/go-md2man/v2/@v/v2.0.4.mod: 200 OK (0.180s)
# get https://sum.golang.org/lookup/github.com/cpuguy83/go-md2man/v2@v2.0.4
# get https://proxy.golang.org/gopkg.in/yaml.v3/@v/v3.0.1.mod: 200 OK (0.181s)
# get https://sum.golang.org/lookup/gopkg.in/yaml.v3@v3.0.1
# get https://sum.golang.org/tile/8/0/x005/005: 200 OK (0.189s)
# get https://sum.golang.org/tile/8/1/019: 200 OK (0.198s)
# get https://sum.golang.org/lookup/gopkg.in/yaml.v3@v3.0.1: 200 OK (0.188s)
# get https://proxy.golang.org/github.com/pmezard/go-difflib/@v/v1.0.0.mod
# get https://proxy.golang.org/github.com/davecgh/go-spew/@v/v1.1.0.mod
# get https://sum.golang.org/tile/8/0/x173/280
# get https://sum.golang.org/lookup/github.com/cpuguy83/go-md2man/v2@v2.0.4: 200 OK (0.206s)
# get https://sum.golang.org/tile/8/0/x093/152
# get https://sum.golang.org/tile/8/1/363
# get https://proxy.golang.org/github.com/pmezard/go-difflib/@v/v1.0.0.mod: 200 OK (0.180s)
# get https://sum.golang.org/lookup/github.com/pmezard/go-difflib@v1.0.0
# get https://proxy.golang.org/github.com/davecgh/go-spew/@v/v1.1.0.mod: 200 OK (0.182s)
# get https://sum.golang.org/lookup/github.com/davecgh/go-spew@v1.1.0
# get https://sum.golang.org/tile/8/0/x173/280: 200 OK (0.189s)
# get https://sum.golang.org/tile/8/0/x041/949
# get https://sum.golang.org/tile/8/1/163
# get https://sum.golang.org/tile/8/1/363: 200 OK (0.189s)
# get https://sum.golang.org/tile/8/0/x093/152: 200 OK (0.204s)
# get https://proxy.golang.org/github.com/stretchr/objx/@v/v0.1.0.mod
# get https://sum.golang.org/lookup/github.com/pmezard/go-difflib@v1.0.0: 200 OK (0.189s)
# get https://sum.golang.org/lookup/github.com/davecgh/go-spew@v1.1.0: 200 OK (0.188s)
# get https://sum.golang.org/tile/8/0/000
# get https://sum.golang.org/tile/8/1/000
# get https://sum.golang.org/tile/8/0/x173/285
# get https://sum.golang.org/tile/8/0/x041/949: 200 OK (0.189s)
# get https://sum.golang.org/tile/8/1/163: 200 OK (0.197s)
# get https://proxy.golang.org/gopkg.in/yaml.v3/@v/v3.0.0-20200313102051-9f266ea9e77c.mod
# get https://proxy.golang.org/github.com/stretchr/objx/@v/v0.1.0.mod: 200 OK (0.180s)
# get https://sum.golang.org/lookup/github.com/stretchr/objx@v0.1.0
# get https://sum.golang.org/tile/8/0/000: 200 OK (0.189s)
# get https://sum.golang.org/tile/8/0/x173/285: 200 OK (0.197s)
# get https://sum.golang.org/tile/8/1/000: 200 OK (0.206s)
# get https://sum.golang.org/tile/8/0/001
# get https://proxy.golang.org/gopkg.in/yaml.v3/@v/v3.0.0-20200313102051-9f266ea9e77c.mod: 200 OK (0.180s)
# get https://sum.golang.org/lookup/gopkg.in/yaml.v3@v3.0.0-20200313102051-9f266ea9e77c
# get https://proxy.golang.org/github.com/russross/blackfriday/v2/@v/v2.1.0.mod
# get https://sum.golang.org/lookup/github.com/stretchr/objx@v0.1.0: 200 OK (0.188s)
# get https://sum.golang.org/tile/8/0/x173/299
# get https://proxy.golang.org/github.com/russross/blackfriday/v2/@v/v2.1.0.mod: 200 OK (0.180s)
# get https://sum.golang.org/tile/8/0/001: 200 OK (0.189s)
# get https://sum.golang.org/lookup/github.com/russross/blackfriday/v2@v2.1.0
# get https://proxy.golang.org/gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.mod
# get https://sum.golang.org/lookup/gopkg.in/yaml.v3@v3.0.0-20200313102051-9f266ea9e77c: 200 OK (0.193s)
# get https://sum.golang.org/tile/8/0/x173/299: 200 OK (0.189s)
# get https://sum.golang.org/tile/8/0/002
# get https://sum.golang.org/tile/8/0/x003/390
# get https://sum.golang.org/tile/8/1/013
# get https://proxy.golang.org/gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.mod: 200 OK (0.180s)
# get https://sum.golang.org/lookup/gopkg.in/check.v1@v0.0.0-20161208181325-20d25e280405
# get https://sum.golang.org/lookup/github.com/russross/blackfriday/v2@v2.1.0: 200 OK (0.197s)
# get https://sum.golang.org/tile/8/0/x007/058
# get https://sum.golang.org/tile/8/1/027
# get https://sum.golang.org/tile/8/0/x003/390: 200 OK (0.189s)
# get https://sum.golang.org/tile/8/0/002: 200 OK (0.198s)
# get https://sum.golang.org/tile/8/1/013: 200 OK (0.206s)
# get https://sum.golang.org/lookup/gopkg.in/check.v1@v0.0.0-20161208181325-20d25e280405: 200 OK (0.189s)
# get https://sum.golang.org/tile/8/0/x173/296
# get https://sum.golang.org/tile/8/1/027: 200 OK (0.189s)
# get https://sum.golang.org/tile/8/0/x007/058: 200 OK (0.221s)
# get https://sum.golang.org/tile/8/0/x173/296: 200 OK (0.189s)
# get https://proxy.golang.org/github.com/cpuguy83/go-md2man/v2/@v/v2.0.4.info
# get https://proxy.golang.org/github.com/akavel/rsrc/@v/v0.10.2.info
# get https://proxy.golang.org/github.com/davecgh/go-spew/@v/v1.1.0.info
# get https://proxy.golang.org/github.com/%21masterminds/semver/v3/@v/v3.3.0.info
# get https://proxy.golang.org/github.com/cpuguy83/go-md2man/v2/@v/v2.0.4.info: 200 OK (0.180s)
# get https://proxy.golang.org/github.com/google/shlex/@v/v0.0.0-20191202100458-e7afc7fbc510.info
# get https://proxy.golang.org/github.com/davecgh/go-spew/@v/v1.1.0.info: 200 OK (0.182s)
# get https://proxy.golang.org/github.com/inconshreveable/mousetrap/@v/v1.1.0.info
# get https://proxy.golang.org/github.com/%21masterminds/semver/v3/@v/v3.3.0.info: 200 OK (0.183s)
# get https://proxy.golang.org/github.com/akavel/rsrc/@v/v0.10.2.info: 200 OK (0.183s)
# get https://proxy.golang.org/github.com/josephspurrier/goversioninfo/@v/v1.4.1.info
# get https://proxy.golang.org/github.com/pmezard/go-difflib/@v/v1.0.0.info
# get https://proxy.golang.org/github.com/google/shlex/@v/v0.0.0-20191202100458-e7afc7fbc510.info: 200 OK (0.180s)
# get https://proxy.golang.org/github.com/russross/blackfriday/v2/@v/v2.1.0.info
# get https://proxy.golang.org/github.com/inconshreveable/mousetrap/@v/v1.1.0.info: 200 OK (0.180s)
# get https://proxy.golang.org/github.com/spf13/cobra/@v/v1.8.1.info
# get https://proxy.golang.org/github.com/josephspurrier/goversioninfo/@v/v1.4.1.info: 200 OK (0.181s)
# get https://proxy.golang.org/github.com/spf13/pflag/@v/v1.0.5.info
# get https://proxy.golang.org/github.com/pmezard/go-difflib/@v/v1.0.0.info: 200 OK (0.182s)
# get https://proxy.golang.org/github.com/stretchr/objx/@v/v0.1.0.info
# get https://proxy.golang.org/github.com/russross/blackfriday/v2/@v/v2.1.0.info: 200 OK (0.180s)
# get https://proxy.golang.org/github.com/stretchr/testify/@v/v1.6.1.info
# get https://proxy.golang.org/github.com/spf13/cobra/@v/v1.8.1.info: 200 OK (0.179s)
# get https://proxy.golang.org/gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.info
# get https://proxy.golang.org/github.com/spf13/pflag/@v/v1.0.5.info: 200 OK (0.179s)
# get https://proxy.golang.org/gopkg.in/yaml.v3/@v/v3.0.1.info
# get https://proxy.golang.org/github.com/stretchr/objx/@v/v0.1.0.info: 200 OK (0.180s)
# get https://proxy.golang.org/github.com/stretchr/testify/@v/v1.6.1.info: 200 OK (0.180s)
# get https://proxy.golang.org/gopkg.in/yaml.v3/@v/v3.0.1.info: 200 OK (0.180s)
# get https://proxy.golang.org/gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.info: 200 OK (0.208s)
# get https://proxy.golang.org/github.com/davecgh/go-spew/@v/v1.1.0.zip
# get https://proxy.golang.org/github.com/akavel/rsrc/@v/v0.10.2.zip
# get https://proxy.golang.org/github.com/%21masterminds/semver/v3/@v/v3.3.0.zip
# get https://proxy.golang.org/github.com/cpuguy83/go-md2man/v2/@v/v2.0.4.zip
# get https://proxy.golang.org/github.com/%21masterminds/semver/v3/@v/v3.3.0.zip: 200 OK (0.180s)
# get https://proxy.golang.org/github.com/cpuguy83/go-md2man/v2/@v/v2.0.4.zip: 200 OK (0.337s)
# get https://proxy.golang.org/github.com/google/shlex/@v/v0.0.0-20191202100458-e7afc7fbc510.zip
# get https://proxy.golang.org/github.com/davecgh/go-spew/@v/v1.1.0.zip: 200 OK (0.403s)
# get https://proxy.golang.org/github.com/inconshreveable/mousetrap/@v/v1.1.0.zip
# get https://proxy.golang.org/github.com/akavel/rsrc/@v/v0.10.2.zip: 200 OK (0.543s)
# get https://proxy.golang.org/github.com/josephspurrier/goversioninfo/@v/v1.4.1.zip
# get https://proxy.golang.org/github.com/google/shlex/@v/v0.0.0-20191202100458-e7afc7fbc510.zip: 200 OK (0.450s)
# get https://proxy.golang.org/github.com/inconshreveable/mousetrap/@v/v1.1.0.zip: 200 OK (0.399s)
# get https://proxy.golang.org/github.com/pmezard/go-difflib/@v/v1.0.0.zip
# get https://proxy.golang.org/github.com/russross/blackfriday/v2/@v/v2.1.0.zip
# get https://proxy.golang.org/github.com/spf13/cobra/@v/v1.8.1.zip
# get https://proxy.golang.org/github.com/josephspurrier/goversioninfo/@v/v1.4.1.zip: 200 OK (0.181s)
# get https://proxy.golang.org/github.com/spf13/pflag/@v/v1.0.5.zip
# get https://proxy.golang.org/github.com/pmezard/go-difflib/@v/v1.0.0.zip: 200 OK (0.180s)
# get https://proxy.golang.org/github.com/russross/blackfriday/v2/@v/v2.1.0.zip: 200 OK (0.189s)
# get https://proxy.golang.org/github.com/stretchr/objx/@v/v0.1.0.zip
# get https://proxy.golang.org/github.com/spf13/cobra/@v/v1.8.1.zip: 200 OK (0.332s)
# get https://proxy.golang.org/github.com/stretchr/testify/@v/v1.6.1.zip
# get https://proxy.golang.org/github.com/spf13/pflag/@v/v1.0.5.zip: 200 OK (0.364s)
# get https://proxy.golang.org/gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.zip
# get https://proxy.golang.org/github.com/stretchr/objx/@v/v0.1.0.zip: 200 OK (0.410s)
# get https://proxy.golang.org/gopkg.in/yaml.v3/@v/v3.0.1.zip
# get https://proxy.golang.org/github.com/stretchr/testify/@v/v1.6.1.zip: 200 OK (0.266s)
# get https://proxy.golang.org/gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.zip: 200 OK (0.180s)
# get https://proxy.golang.org/gopkg.in/yaml.v3/@v/v3.0.1.zip: 200 OK (0.180s)
===>  Extracting for xcaddy-0.4.4_1
=> SHA256 Checksum OK for go/www_xcaddy/xcaddy-v0.4.4/v0.4.4.mod.
=> SHA256 Checksum OK for go/www_xcaddy/xcaddy-v0.4.4/v0.4.4.zip.
===> Tidying github.com/caddyserver/xcaddy dependencies
===> Vendoring github.com/caddyserver/xcaddy dependencies
===>  Patching for xcaddy-0.4.4_1
/usr/bin/sed -i.bak 's,return "go",return "/usr/local/bin/go124",g'  /usr/ports/www/xcaddy/work/github.com/caddyserver/xcaddy@v0.4.4/internal/utils/environment.go
===>   xcaddy-0.4.4_1 depends on file: /usr/local/bin/go124 - found
===>  Configuring for xcaddy-0.4.4_1
===>  Building for xcaddy-0.4.4_1
(cd /usr/ports/www/xcaddy/work/github.com/caddyserver/xcaddy@v0.4.4;  for t in ./cmd/xcaddy; do  out=$(/usr/bin/basename $(echo ${t} |  /usr/bin/sed -Ee 's/^[^:]*:([^:]+).*$/\1/' -e 's/^\.$/xcaddy/'));  pkg=$(echo ${t} |  /usr/bin/sed -Ee 's/^([^:]*).*$/\1/' -e 's/^xcaddy$/./');  echo "===>  Building ${out} from ${pkg}";  /usr/bin/env -i HOME=/usr/ports/www/xcaddy/work  MACHINE_ARCH=amd64  PWD="${PWD}"  GIT_CEILING_DIRECTORIES=/usr/ports/www/xcaddy/work  __MAKE_CONF=/nonexistent OSVERSION=1403000 PATH=/usr/ports/www/xcaddy/work/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/home/jenkins//bin TERM=su XDG_DATA_HOME=/usr/ports/www/xcaddy/work  XDG_CONFIG_HOME=/usr/ports/www/xcaddy/work  XDG_CACHE_HOME=/usr/ports/www/xcaddy/work/.cache  HOME=/usr/ports/www/xcaddy/work PATH=/usr/ports/www/xcaddy/work/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/home/jenkins//bin PKG_CONFIG_LIBDIR=/usr/ports/www/xcaddy/work/.pkgconfig:/usr/local/libdata/pkgconfig:/usr/local/share/pkgconfig:/usr/libdata/pkgconfig MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local  LOCALBASE=/usr/local  CC="cc" CFLAGS="-O2 -pipe  -fstack-protector-strong -fno-strict-aliasing "  CPP="cpp" CPPFLAGS=""  LDFLAGS=" -fstack-protector-strong " LIBS=""  CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector-strong -fno-strict-aliasing  " BSD_INSTALL_PROGRAM="install  -s -m 555"  BSD_INSTALL_LIB="install  -s -m 0644"  BSD_INSTALL_SCRIPT="install  -m 555"  BSD_INSTALL_DATA="install  -m 0644"  BSD_INSTALL_MAN="install  -m 444" CGO_ENABLED=1  CGO_CFLAGS="-I/usr/local/include"  CGO_LDFLAGS="-L/usr/local/lib"  GOAMD64=  GOARM=  GOTMPDIR="/usr/ports/www/xcaddy/work" GOPATH="/usr/ports/distfiles/go/www_xcaddy"  GOBIN="/usr/ports/www/xcaddy/work/bin"  GO111MODULE=on  GOFLAGS=-modcacherw  GOSUMDB=sum.golang.org GOMAXPROCS=4 GOPROXY=off /usr/local/bin/go124 build -buildmode=exe -v -trimpath -ldflags=-s -buildvcs=false -mod=vendor  -o /usr/ports/www/xcaddy/work/bin/${out}  ${pkg};  done)
===>  Building xcaddy from ./cmd/xcaddy
internal/unsafeheader
internal/goarch
internal/byteorder
internal/cpu
internal/coverage/rtcov
internal/abi
internal/chacha8rand
internal/godebugs
internal/goexperiment
internal/goos
internal/profilerecord
internal/bytealg
internal/runtime/atomic
internal/asan
internal/msan
internal/runtime/math
internal/runtime/exithook
internal/runtime/sys
internal/stringslite
sync/atomic
internal/race
math/bits
unicode
internal/runtime/maps
unicode/utf8
internal/sync
internal/itoa
cmp
encoding
math
unicode/utf16
image/color
log/internal
internal/nettrace
runtime
iter
weak
internal/reflectlite
sync
slices
maps
errors
sort
internal/bisect
internal/testlog
io
internal/oserror
internal/godebug
syscall
bytes
strconv
path
strings
hash
reflect
hash/adler32
internal/saferio
regexp/syntax
bufio
image
time
internal/syscall/unix
internal/syscall/execenv
regexp
vendor/golang.org/x/net/dns/dnsmessage
internal/singleflight
unique
context
io/fs
internal/poll
internal/filepathlite
embed
os
net/netip
encoding/binary
internal/fmtsort
encoding/base64
runtime/cgo
io/ioutil
path/filepath
fmt
vendor/golang.org/x/net/route
os/exec
os/signal
encoding/json
github.com/akavel/rsrc/binutil
database/sql/driver
compress/flate
debug/dwarf
compress/zlib
github.com/akavel/rsrc/ico
log
debug/pe
github.com/Masterminds/semver/v3
github.com/google/shlex
net/url
github.com/akavel/rsrc/coff
text/template/parse
github.com/josephspurrier/goversioninfo
encoding/csv
encoding/hex
flag
text/template
github.com/caddyserver/xcaddy/internal/utils
runtime/debug
github.com/caddyserver/xcaddy
net
github.com/spf13/pflag
github.com/spf13/cobra
github.com/caddyserver/xcaddy/cmd
github.com/caddyserver/xcaddy/cmd/xcaddy
===>  Staging for xcaddy-0.4.4_1
===>   xcaddy-0.4.4_1 depends on file: /usr/local/bin/go124 - found
===>   Generating temporary packing list
for t in ./cmd/xcaddy; do  dst=$(echo ${t} |  /usr/bin/sed -Ee 's/^[^:]*:([^:]+).*$/\1/' -e 's/^\.$/xcaddy/');  src=$(/usr/bin/basename ${dst});  case ${dst} in  /*) dst=/usr/ports/www/xcaddy/work/stage${dst}; /bin/mkdir -p $(/usr/bin/dirname ${dst}) ;;  *) dst=/usr/ports/www/xcaddy/work/stage/usr/local/bin/${src} ;;  esac;  echo "===>  Installing ${src} as ${dst}";  install  -s -m 555 /usr/ports/www/xcaddy/work/bin/${src} ${dst};  done
===>  Installing xcaddy as /usr/ports/www/xcaddy/work/stage/usr/local/bin/xcaddy
====> Compressing man pages (compress-man)
===>  Installing for xcaddy-0.4.4_1
===>  Checking if xcaddy is already installed
===>   Registering installation for xcaddy-0.4.4_1 as automatic
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] Installing xcaddy-0.4.4_1...
xcaddy is a tool to build custom Caddy web servers with plugins.

SECURITY NOTICE:
When building and running Caddy servers created with xcaddy, it is strongly
recommended to run the resulting Caddy binary as an unprivileged user, such as
www:www, rather than as root.

For secure deployment of Caddy servers built with xcaddy:

- Use security/portacl-rc to enable privileged port binding:

  # pkg install security/portacl-rc
  # sysrc portacl_users+=www
  # sysrc portacl_user_www_tcp="http https"
  # sysrc portacl_user_www_udp="https"
  # service portacl enable
  # service portacl start

- Run your custom Caddy binary as www:www instead of root

See https://caddyserver.com/docs/ for Caddy configuration documentation.
See https://github.com/caddyserver/xcaddy for xcaddy usage instructions.


===>   caddy-custom-2.10.0.2.0.4.4.1_4 depends on executable: xcaddy - found
===>   Returning to build of caddy-custom-2.10.0.2.0.4.4.1_4
===>   caddy-custom-2.10.0.2.0.4.4.1_4 depends on file: /usr/local/bin/go124 - found
===>  Configuring for caddy-custom-2.10.0.2.0.4.4.1_4
===>  Building for caddy-custom-2.10.0.2.0.4.4.1_4
/bin/mkdir -p /usr/ports/www/caddy-custom/work/caddy-custom-2.10.0.2.0.4.4.1
cd /usr/ports/www/caddy-custom/work/caddy-custom-2.10.0.2.0.4.4.1 && XCADDY_WHICH_GO="/usr/local/bin/go124"  XCADDY_GO_BUILD_FLAGS="-buildmode=exe -v -trimpath -ldflags=-s -buildvcs=false" /usr/local/bin/xcaddy build v2.10.0 --with github.com/lindenlab/caddy-s3-proxy
2025/10/01 01:35:18 [INFO] absolute output file path: /usr/ports/www/caddy-custom/work/caddy-custom-2.10.0.2.0.4.4.1/caddy
2025/10/01 01:35:18 [INFO] Temporary folder: /tmp/buildenv_2025-10-01-0135.1505779828
2025/10/01 01:35:18 [INFO] Writing main module: /tmp/buildenv_2025-10-01-0135.1505779828/main.go
package main

import (
	caddycmd "github.com/caddyserver/caddy/v2/cmd"

	// plug in Caddy modules here
	_ "github.com/caddyserver/caddy/v2/modules/standard"
	_ "github.com/lindenlab/caddy-s3-proxy"
)

func main() {
	caddycmd.Main()
}
2025/10/01 01:35:18 [INFO] Initializing Go module
2025/10/01 01:35:18 [INFO] exec (timeout=0s): /usr/local/bin/go124 mod init caddy 
go: creating new go.mod: module caddy
go: to add module requirements and sums:
	go mod tidy
2025/10/01 01:35:18 [INFO] Pinning versions
2025/10/01 01:35:18 [INFO] exec (timeout=0s): /usr/local/bin/go124 get -v -buildmode=exe -v -trimpath -ldflags=-s -buildvcs=false github.com/caddyserver/caddy/v2@v2.10.0 
go: downloading github.com/caddyserver/caddy/v2 v2.10.0
go: downloading github.com/caddyserver/certmagic v0.23.0
go: downloading github.com/cespare/xxhash/v2 v2.3.0
go: downloading github.com/google/uuid v1.6.0
go: downloading github.com/prometheus/client_golang v1.19.1
go: downloading github.com/cespare/xxhash v1.1.0
go: downloading github.com/quic-go/quic-go v0.50.1
go: downloading go.uber.org/zap v1.27.0
go: downloading go.uber.org/zap/exp v0.3.0
go: downloading golang.org/x/sys v0.31.0
go: downloading golang.org/x/term v0.30.0
go: downloading golang.org/x/time v0.11.0
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/prometheus/client_model v0.5.0
go: downloading github.com/prometheus/common v0.48.0
go: downloading github.com/prometheus/procfs v0.12.0
go: downloading google.golang.org/protobuf v1.35.1
go: downloading github.com/caddyserver/zerossl v0.1.3
go: downloading github.com/klauspost/cpuid/v2 v2.2.10
go: downloading github.com/libdns/libdns v1.0.0-beta.1
go: downloading github.com/mholt/acmez/v3 v3.1.2
go: downloading github.com/miekg/dns v1.1.63
go: downloading github.com/zeebo/blake3 v0.2.4
go: downloading golang.org/x/crypto v0.36.0
go: downloading golang.org/x/net v0.38.0
go: downloading github.com/quic-go/qpack v0.5.1
go: downloading github.com/onsi/ginkgo/v2 v2.13.2
go: downloading github.com/francoispqt/gojay v1.2.13
go: downloading go.uber.org/mock v0.5.0
go: downloading golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842
go: downloading go.uber.org/multierr v1.11.0
go: downloading golang.org/x/tools v0.31.0
go: downloading golang.org/x/text v0.23.0
go: downloading golang.org/x/mod v0.24.0
go: downloading golang.org/x/sync v0.12.0
go: downloading github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572
go: downloading github.com/google/pprof v0.0.0-20231212022811-ec68065c825e
go: added github.com/beorn7/perks v1.0.1
go: added github.com/caddyserver/caddy/v2 v2.10.0
go: added github.com/caddyserver/certmagic v0.23.0
go: added github.com/caddyserver/zerossl v0.1.3
go: added github.com/cespare/xxhash/v2 v2.3.0
go: added github.com/francoispqt/gojay v1.2.13
go: added github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572
go: added github.com/google/pprof v0.0.0-20231212022811-ec68065c825e
go: added github.com/google/uuid v1.6.0
go: added github.com/klauspost/cpuid/v2 v2.2.10
go: added github.com/libdns/libdns v1.0.0-beta.1
go: added github.com/mholt/acmez/v3 v3.1.2
go: added github.com/miekg/dns v1.1.63
go: added github.com/onsi/ginkgo/v2 v2.13.2
go: added github.com/prometheus/client_golang v1.19.1
go: added github.com/prometheus/client_model v0.5.0
go: added github.com/prometheus/common v0.48.0
go: added github.com/prometheus/procfs v0.12.0
go: added github.com/quic-go/qpack v0.5.1
go: added github.com/quic-go/quic-go v0.50.1
go: added github.com/zeebo/blake3 v0.2.4
go: added go.uber.org/mock v0.5.0
go: added go.uber.org/multierr v1.11.0
go: added go.uber.org/zap v1.27.0
go: added go.uber.org/zap/exp v0.3.0
go: added golang.org/x/crypto v0.36.0
go: added golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842
go: added golang.org/x/mod v0.24.0
go: added golang.org/x/net v0.38.0
go: added golang.org/x/sync v0.12.0
go: added golang.org/x/sys v0.31.0
go: added golang.org/x/term v0.30.0
go: added golang.org/x/text v0.23.0
go: added golang.org/x/time v0.11.0
go: added golang.org/x/tools v0.31.0
go: added google.golang.org/protobuf v1.35.1
2025/10/01 01:36:02 [INFO] exec (timeout=0s): /usr/local/bin/go124 get -v -buildmode=exe -v -trimpath -ldflags=-s -buildvcs=false github.com/lindenlab/caddy-s3-proxy github.com/caddyserver/caddy/v2@v2.10.0 
go: downloading github.com/lindenlab/caddy-s3-proxy v0.5.6
go: downloading github.com/aws/aws-sdk-go v1.36.23
go: downloading github.com/dustin/go-humanize v1.0.1
go: downloading github.com/google/cel-go v0.24.1
go: downloading github.com/spf13/cobra v1.9.1
go: downloading github.com/smallstep/certificates v0.26.1
go: downloading github.com/smallstep/truststore v0.13.0
go: downloading go.step.sm/crypto v0.45.0
go: downloading github.com/cloudflare/circl v1.6.0
go: downloading github.com/tailscale/tscert v0.0.0-20240608151842-d3f834017e53
go: downloading github.com/jmespath/go-jmespath v0.4.0
go: downloading github.com/KimMachineGun/automemlimit v0.7.1
go: downloading github.com/aryann/difflib v0.0.0-20210328193216-ff5ff6dc229b
go: downloading github.com/spf13/pflag v1.0.6
go: downloading go.uber.org/automaxprocs v1.6.0
go: downloading golang.org/x/crypto/x509roots/fallback v0.0.0-20250305170421-49bf5b80c810
go: downloading cel.dev/expr v0.19.1
go: downloading google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9
go: downloading github.com/stoewer/go-strcase v1.2.0
go: downloading github.com/antlr4-go/antlr/v4 v4.13.0
go: downloading howett.net/plist v1.0.0
go: downloading google.golang.org/genproto v0.0.0-20200806141610-86f49bd18e98
go: downloading github.com/inconshreveable/mousetrap v1.1.0
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/smallstep/nosql v0.6.1
go: downloading go.step.sm/cli-utils v0.9.0
go: downloading go.step.sm/linkedca v0.20.1
go: downloading google.golang.org/grpc v1.67.1
go: downloading github.com/slackhq/nebula v1.6.1
go: downloading github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58
go: downloading github.com/cpuguy83/go-md2man/v2 v2.0.6
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20241007155032-5fefd90f89a9
go: downloading github.com/cpuguy83/go-md2man v1.0.10
go: downloading github.com/smallstep/pkcs7 v0.0.0-20231024181729-3b98ecc1ca81
go: downloading github.com/smallstep/scep v0.0.0-20231024192529-aee96d7ad34d
go: downloading github.com/Masterminds/sprig/v3 v3.3.0
go: downloading github.com/go-jose/go-jose/v3 v3.0.4
go: downloading github.com/urfave/cli v1.22.14
go: downloading github.com/manifoldco/promptui v0.9.0
go: downloading github.com/chzyer/readline v1.5.1
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/rs/xid v1.5.0
go: downloading github.com/Microsoft/go-winio v0.6.0
go: downloading github.com/mitchellh/go-ps v1.0.0
go: downloading github.com/russross/blackfriday/v2 v2.1.0
go: downloading github.com/go-kit/kit v0.13.0
go: downloading github.com/russross/blackfriday v1.5.2
go: downloading github.com/dgraph-io/badger v1.6.2
go: downloading github.com/dgraph-io/badger/v2 v2.2007.4
go: downloading go.etcd.io/bbolt v1.3.9
go: downloading github.com/go-sql-driver/mysql v1.7.1
go: downloading github.com/jackc/pgx/v4 v4.18.3
go: downloading dario.cat/mergo v1.0.1
go: downloading github.com/Masterminds/goutils v1.1.1
go: downloading github.com/Masterminds/semver/v3 v3.3.0
go: downloading github.com/huandu/xstrings v1.5.0
go: downloading github.com/mitchellh/copystructure v1.2.0
go: downloading github.com/shopspring/decimal v1.4.0
go: downloading github.com/Masterminds/semver v1.4.2
go: downloading github.com/spf13/cast v1.7.0
go: downloading github.com/go-kit/log v0.2.1
go: downloading github.com/dgraph-io/ristretto v0.2.0
go: downloading github.com/golang/protobuf v1.5.4
go: downloading github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13
go: downloading github.com/jackc/pgconn v1.14.3
go: downloading github.com/jackc/pgtype v1.14.0
go: downloading github.com/jackc/pgio v1.0.0
go: downloading github.com/jackc/pgproto3/v2 v2.3.3
go: downloading github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d
go: downloading github.com/mitchellh/reflectwalk v1.0.2
go: downloading github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96
go: downloading github.com/go-logfmt/logfmt v0.6.0
go: downloading github.com/golang/snappy v0.0.4
go: downloading github.com/klauspost/compress v1.18.0
go: downloading github.com/jackc/chunkreader/v2 v2.0.1
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a
go: downloading github.com/shurcooL/sanitized_anchor_name v1.0.0
go: downloading github.com/mattn/go-colorable v0.1.13
go: downloading github.com/mattn/go-isatty v0.0.20
go: downloading github.com/aws/aws-sdk-go v1.40.45
go: downloading google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda
go: added github.com/aws/aws-sdk-go v1.40.45
go: added github.com/jmespath/go-jmespath v0.4.0
go: added github.com/lindenlab/caddy-s3-proxy v0.5.6
2025/10/01 01:39:12 [INFO] exec (timeout=0s): /usr/local/bin/go124 get -v -buildmode=exe -v -trimpath -ldflags=-s -buildvcs=false  
go: downloading github.com/go-chi/chi/v5 v5.2.1
go: downloading gopkg.in/natefinch/lumberjack.v2 v2.2.1
go: downloading github.com/pires/go-proxyproto v0.7.1-0.20240628150027-b718e7ce4964
go: downloading go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0
go: downloading github.com/go-chi/chi v4.1.2+incompatible
go: downloading go.opentelemetry.io/contrib/propagators/autoprop v0.42.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.31.0
go: downloading go.opentelemetry.io/otel v1.31.0
go: downloading go.opentelemetry.io/otel/sdk v1.31.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.31.0
go: downloading go.opentelemetry.io/otel/trace v1.31.0
go: downloading github.com/BurntSushi/toml v1.4.0
go: downloading github.com/alecthomas/chroma/v2 v2.15.0
go: downloading github.com/yuin/goldmark v1.7.8
go: downloading github.com/yuin/goldmark-highlighting/v2 v2.0.0-20230729083705-37449abec8cc
go: downloading github.com/fxamacker/cbor/v2 v2.6.0
go: downloading github.com/google/go-tpm v0.9.0
go: downloading github.com/alecthomas/chroma v0.8.2
go: downloading github.com/yuin/goldmark-highlighting v0.0.0-20200307114337-60d527fdb691
go: downloading github.com/smallstep/go-attestation v0.4.4-0.20240109183208-413678f90935
go: downloading github.com/felixge/httpsnoop v1.0.4
go: downloading go.opentelemetry.io/otel/metric v1.31.0
go: downloading go.opentelemetry.io/contrib/propagators/aws v1.17.0
go: downloading go.opentelemetry.io/contrib/propagators/b3 v1.17.0
go: downloading go.opentelemetry.io/contrib/propagators/jaeger v1.17.0
go: downloading go.opentelemetry.io/contrib/propagators/ot v1.17.0
go: downloading go.opentelemetry.io/proto/otlp v1.3.1
go: downloading github.com/sirupsen/logrus v1.9.3
go: downloading github.com/go-logr/logr v1.4.2
go: downloading github.com/x448/float16 v0.8.4
go: downloading github.com/google/go-tspi v0.3.0
go: downloading github.com/go-logr/stdr v1.2.2
go: downloading github.com/cenkalti/backoff/v4 v4.3.0
go: downloading github.com/dlclark/regexp2 v1.11.4
go: downloading github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0
go: downloading github.com/cenkalti/backoff v2.2.1+incompatible
go: downloading github.com/grpc-ecosystem/grpc-gateway v1.12.1
go: downloading github.com/google/certificate-transparency-go v1.1.8-0.20240110162603-74a5dd331745
go: downloading github.com/aws/aws-sdk-go v1.46.4
go: upgraded github.com/aws/aws-sdk-go v1.40.45 => v1.46.4
2025/10/01 01:39:50 [INFO] Build environment ready
2025/10/01 01:39:50 [INFO] Building Caddy
2025/10/01 01:39:50 [INFO] exec (timeout=0s): /usr/local/bin/go124 mod tidy -e 
go: downloading github.com/stretchr/testify v1.10.0
go: downloading go.uber.org/goleak v1.3.0
go: downloading github.com/onsi/gomega v1.29.0
go: downloading github.com/davecgh/go-spew v1.1.1
go: downloading github.com/smallstep/assert v0.0.0-20200723003110-82e2b9b3b262
go: downloading github.com/google/go-cmp v0.6.0
go: downloading gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
go: downloading github.com/zeebo/assert v1.1.0
go: downloading github.com/prashantv/gostub v1.1.0
go: downloading github.com/pmezard/go-difflib v1.0.0
go: downloading github.com/jmespath/go-jmespath/internal/testify v1.5.1
go: downloading github.com/alecthomas/assert/v2 v2.11.0
go: downloading github.com/google/go-tpm-tools v0.4.4
go: downloading github.com/peterbourgon/diskv/v3 v3.0.1
go: downloading github.com/schollz/jsonstore v1.1.0
go: downloading github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38
go: downloading github.com/kr/pretty v0.3.1
go: downloading github.com/frankban/quicktest v1.14.6
go: downloading github.com/alecthomas/repr v0.4.0
go: downloading github.com/chzyer/test v1.0.0
go: downloading github.com/aws/aws-sdk-go-v2/config v1.27.13
go: downloading github.com/aws/aws-sdk-go-v2/service/kms v1.31.1
go: downloading cloud.google.com/go/kms v1.16.0
go: downloading github.com/aws/aws-sdk-go-v2 v1.26.1
go: downloading cloud.google.com/go v0.112.1
go: downloading github.com/googleapis/gax-go/v2 v2.12.4
go: downloading google.golang.org/api v0.180.0
go: downloading gopkg.in/yaml.v2 v2.4.0
go: downloading github.com/hexops/gotextdiff v1.0.3
go: downloading github.com/googleapis/gax-go v2.0.0+incompatible
go: downloading github.com/cockroachdb/apd v1.1.0
go: downloading github.com/gofrs/uuid v4.0.0+incompatible
go: downloading github.com/google/btree v1.1.2
go: downloading github.com/chzyer/logex v1.2.1
go: downloading github.com/kr/text v0.2.0
go: downloading github.com/rogpeppe/go-internal v1.13.1
go: downloading github.com/aws/aws-sdk-go-v2/credentials v1.17.13
go: downloading github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1
go: downloading github.com/aws/aws-sdk-go-v2/service/sso v1.20.6
go: downloading github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0
go: downloading github.com/aws/aws-sdk-go-v2/service/ssooidc v1.24.0
go: downloading github.com/aws/aws-sdk-go-v2/service/sts v1.28.7
go: downloading github.com/aws/smithy-go v1.20.2
go: downloading github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.5
go: downloading cloud.google.com/go/iam v1.1.8
go: downloading cloud.google.com/go/longrunning v0.5.7
go: downloading github.com/jackc/pgmock v0.0.0-20210724152146-4ad1a8207f65
go: downloading github.com/lib/pq v1.10.9
go: downloading github.com/zeebo/pcg v1.0.1
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.7
go: downloading github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.5
go: downloading cloud.google.com/go/auth v0.4.1
go: downloading golang.org/x/oauth2 v0.22.0
go: downloading cloud.google.com/go/auth/oauth2adapt v0.2.2
go: downloading cloud.google.com/go/compute/metadata v0.5.0
go: downloading go.opencensus.io v0.24.0
go: downloading go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0
go: downloading cloud.google.com/go/compute v1.23.3
go: downloading github.com/OneOfOne/xxhash v1.2.2
go: downloading github.com/spaolacci/murmur3 v1.1.0
go: downloading github.com/google/s2a-go v0.1.7
go: downloading github.com/googleapis/enterprise-certificate-proxy v0.3.2
go: downloading github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
2025/10/01 01:40:13 [INFO] exec (timeout=0s): /usr/local/bin/go124 build -o /usr/ports/www/caddy-custom/work/caddy-custom-2.10.0.2.0.4.4.1/caddy -buildmode=exe -v -trimpath -ldflags=-s -buildvcs=false 
internal/unsafeheader
internal/byteorder
internal/goarch
internal/cpu
internal/coverage/rtcov
internal/godebugs
internal/abi
internal/chacha8rand
internal/goexperiment
internal/goos
internal/profilerecord
internal/bytealg
internal/runtime/atomic
internal/asan
internal/msan
internal/runtime/math
internal/runtime/exithook
internal/runtime/sys
internal/stringslite
sync/atomic
math/bits
unicode
internal/race
unicode/utf8
internal/runtime/maps
internal/sync
cmp
internal/itoa
math
crypto/internal/fips140/alias
crypto/internal/fips140deps/byteorder
crypto/internal/fips140deps/cpu
crypto/internal/fips140/subtle
crypto/internal/boring/sig
encoding
unicode/utf16
log/internal
log/slog/internal
container/list
runtime
vendor/golang.org/x/crypto/cryptobyte/asn1
vendor/golang.org/x/crypto/internal/alias
internal/nettrace
github.com/caddyserver/caddy/v2/notify
golang.org/x/crypto/cryptobyte/asn1
golang.org/x/net/internal/iana
github.com/zeebo/blake3/internal/alg/compress/compress_sse41
github.com/zeebo/blake3/internal/alg/hash/hash_avx2
google.golang.org/protobuf/internal/flags
google.golang.org/protobuf/internal/set
golang.org/x/crypto/internal/alias
github.com/quic-go/quic-go/internal/utils/ringbuffer
go.uber.org/automaxprocs/internal/runtime
google.golang.org/grpc/serviceconfig
github.com/dgraph-io/badger/options
github.com/dgraph-io/badger/trie
github.com/dgraph-io/badger/v2/options
github.com/klauspost/compress
github.com/klauspost/compress/internal/cpuinfo
github.com/klauspost/compress/internal/le
github.com/dgraph-io/badger/v2/trie
github.com/shurcooL/sanitized_anchor_name
golang.org/x/net/html/atom
golang.org/x/crypto/salsa20/salsa
github.com/cloudflare/circl/pke/kyber/internal/common/params
github.com/google/cel-go/common/overloads
github.com/google/cel-go/common/operators
golang.org/x/exp/constraints
go.opentelemetry.io/otel/internal
go.opentelemetry.io/otel/metric/embedded
golang.org/x/exp/slices
go.opentelemetry.io/otel/trace/embedded
go.opentelemetry.io/otel/sdk/instrumentation
go.opentelemetry.io/otel/sdk
github.com/google/go-tspi/tspiconst
github.com/aws/aws-sdk-go/aws/client/metadata
github.com/aws/aws-sdk-go/internal/sdkmath
iter
crypto/subtle
internal/reflectlite
sync
slices
maps
weak
runtime/metrics
errors
sort
internal/bisect
internal/testlog
io
strconv
internal/oserror
bytes
path
internal/godebug
syscall
reflect
strings
hash
crypto
crypto/internal/fips140deps/godebug
math/rand/v2
crypto/internal/randutil
math/rand
bufio
crypto/internal/fips140
crypto/internal/impl
crypto/internal/fips140/sha3
crypto/internal/fips140/sha256
crypto/internal/fips140/sha512
log/slog/internal/buffer
time
internal/syscall/unix
internal/syscall/execenv
github.com/pbnjay/memory
crypto/internal/fips140/hmac
crypto/internal/fips140/check
crypto/sha3
crypto/internal/fips140/aes
crypto/internal/fips140/nistec/fiat
crypto/internal/fips140/edwards25519/field
io/fs
internal/poll
internal/filepathlite
context
os
crypto/internal/fips140/nistec
crypto/internal/fips140/bigmod
internal/fmtsort
encoding/binary
crypto/internal/fips140hash
crypto/internal/fips140/edwards25519
encoding/base64
crypto/internal/fips140/hkdf
crypto/internal/fips140/tls12
fmt
path/filepath
crypto/internal/sysrand
crypto/internal/entropy
crypto/internal/fips140/drbg
crypto/internal/fips140/tls13
crypto/internal/fips140/aes/gcm
crypto/internal/fips140only
crypto/internal/fips140/ecdh
crypto/internal/fips140/ecdsa
os/user
math/big
archive/tar
encoding/json
crypto/cipher
crypto/internal/boring
flag
log
runtime/debug
github.com/aryann/difflib
crypto/aes
crypto/des
crypto/ecdh
crypto/sha512
crypto/internal/fips140/ed25519
crypto/hmac
crypto/internal/fips140/mlkem
vendor/golang.org/x/crypto/chacha20
crypto/rand
log/slog
crypto/elliptic
crypto/internal/boring/bbig
encoding/asn1
crypto/ed25519
vendor/golang.org/x/crypto/internal/poly1305
vendor/golang.org/x/sys/cpu
vendor/golang.org/x/crypto/cryptobyte
crypto/md5
vendor/golang.org/x/crypto/chacha20poly1305
github.com/KimMachineGun/automemlimit/memlimit
crypto/rc4
crypto/internal/fips140/rsa
crypto/ecdsa
crypto/internal/hpke
crypto/sha1
crypto/sha256
crypto/tls/internal/fips140tls
crypto/dsa
encoding/hex
encoding/pem
crypto/rsa
vendor/golang.org/x/net/dns/dnsmessage
crypto/x509/pkix
vendor/golang.org/x/net/route
internal/singleflight
unique
net/url
compress/flate
hash/crc32
net/netip
vendor/golang.org/x/text/transform
compress/gzip
vendor/golang.org/x/text/unicode/bidi
vendor/golang.org/x/text/unicode/norm
vendor/golang.org/x/net/http2/hpack
vendor/golang.org/x/text/secure/bidirule
mime
mime/quotedprintable
net/http/internal
net/http/internal/ascii
github.com/caddyserver/caddy/v2/internal
github.com/caddyserver/caddy/v2/internal/filesystems
net
github.com/caddyserver/certmagic/internal/atomicfile
github.com/klauspost/cpuid/v2
vendor/golang.org/x/net/idna
github.com/libdns/libdns
regexp/syntax
golang.org/x/crypto/cryptobyte
golang.org/x/text/transform
golang.org/x/text/unicode/norm
golang.org/x/text/unicode/bidi
regexp
golang.org/x/text/secure/bidirule
encoding/base32
golang.org/x/net/bpf
golang.org/x/sys/unix
golang.org/x/net/idna
github.com/zeebo/blake3/internal/consts
github.com/zeebo/blake3/internal/alg/compress/compress_pure
github.com/zeebo/blake3/internal/alg/compress
github.com/zeebo/blake3/internal/utils
go.uber.org/multierr
github.com/zeebo/blake3/internal/alg/hash/hash_pure
go.uber.org/zap/internal/pool
github.com/zeebo/blake3/internal/alg/hash
go.uber.org/zap/buffer
github.com/zeebo/blake3/internal/alg
github.com/zeebo/blake3
go.uber.org/zap/internal/bufferpool
go.uber.org/zap/internal/color
go.uber.org/zap/internal/exit
go.uber.org/zap/internal/stacktrace
go.uber.org/zap/zapcore
hash/fnv
github.com/cespare/xxhash/v2
database/sql/driver
crypto/x509
net/textproto
vendor/golang.org/x/net/http/httpproxy
vendor/golang.org/x/net/http/httpguts
mime/multipart
golang.org/x/net/internal/socket
golang.org/x/net/ipv4
golang.org/x/net/ipv6
github.com/google/uuid
github.com/beorn7/perks/quantile
go.uber.org/zap/internal
google.golang.org/protobuf/internal/detrand
google.golang.org/protobuf/internal/pragma
embed
go/token
google.golang.org/protobuf/internal/errors
google.golang.org/protobuf/internal/editiondefaults
google.golang.org/protobuf/encoding/protowire
google.golang.org/protobuf/internal/version
github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg
github.com/prometheus/procfs/internal/fs
google.golang.org/protobuf/reflect/protoreflect
github.com/prometheus/procfs/internal/util
database/sql
crypto/tls
golang.org/x/crypto/ocsp
github.com/prometheus/procfs
google.golang.org/protobuf/internal/descfmt
google.golang.org/protobuf/internal/descopts
google.golang.org/protobuf/internal/strs
google.golang.org/protobuf/internal/encoding/text
google.golang.org/protobuf/internal/encoding/messageset
google.golang.org/protobuf/internal/genid
google.golang.org/protobuf/internal/order
google.golang.org/protobuf/reflect/protoregistry
google.golang.org/protobuf/internal/encoding/defval
google.golang.org/protobuf/runtime/protoiface
golang.org/x/exp/rand
google.golang.org/protobuf/proto
github.com/quic-go/quic-go/quicvarint
golang.org/x/crypto/chacha20
golang.org/x/crypto/internal/poly1305
google.golang.org/protobuf/internal/filedesc
google.golang.org/protobuf/encoding/prototext
google.golang.org/protobuf/encoding/protodelim
golang.org/x/sys/cpu
golang.org/x/crypto/hkdf
github.com/quic-go/quic-go/internal/utils/linkedlist
golang.org/x/net/http2/hpack
github.com/quic-go/qpack
golang.org/x/net/http/httpguts
github.com/francoispqt/gojay
google.golang.org/protobuf/internal/encoding/tag
golang.org/x/crypto/chacha20poly1305
google.golang.org/protobuf/internal/impl
golang.org/x/term
golang.org/x/time/rate
html
net/http/httptrace
net/http
github.com/miekg/dns
github.com/quic-go/quic-go/internal/protocol
github.com/quic-go/quic-go/internal/utils
google.golang.org/protobuf/internal/filetype
github.com/quic-go/quic-go/internal/qerr
google.golang.org/protobuf/runtime/protoimpl
github.com/quic-go/quic-go/internal/wire
google.golang.org/protobuf/types/known/timestamppb
github.com/prometheus/client_model/go
github.com/prometheus/common/model
github.com/quic-go/quic-go/logging
github.com/quic-go/quic-go/internal/congestion
github.com/quic-go/quic-go/internal/ackhandler
github.com/prometheus/client_golang/prometheus/internal
github.com/quic-go/quic-go/internal/flowcontrol
github.com/quic-go/quic-go/internal/handshake
internal/profile
github.com/quic-go/quic-go
text/tabwriter
runtime/pprof
runtime/trace
os/signal
encoding/csv
github.com/spf13/pflag
text/template/parse
expvar
github.com/caddyserver/caddy/v2/internal/metrics
github.com/caddyserver/zerossl
github.com/mholt/acmez/v3/acme
go.uber.org/zap
github.com/prometheus/common/expfmt
github.com/quic-go/quic-go/http3
github.com/mholt/acmez/v3
github.com/prometheus/client_golang/prometheus
github.com/quic-go/quic-go/qlog
net/http/pprof
text/template
github.com/russross/blackfriday/v2
go.uber.org/zap/exp/zapslog
github.com/caddyserver/certmagic
github.com/spf13/cobra
github.com/cpuguy83/go-md2man/v2/md2man
github.com/prometheus/client_golang/prometheus/collectors
gopkg.in/yaml.v3
go.uber.org/automaxprocs/maxprocs
golang.org/x/crypto/x509roots/fallback
os/exec
github.com/pkg/errors
github.com/smallstep/certificates/api/log
google.golang.org/protobuf/internal/encoding/json
google.golang.org/protobuf/encoding/protojson
golang.org/x/net/internal/timeseries
html/template
github.com/smallstep/certificates/api/render
google.golang.org/grpc/backoff
github.com/caddyserver/caddy/v2
golang.org/x/net/trace
google.golang.org/grpc/grpclog/internal
google.golang.org/grpc/grpclog
google.golang.org/grpc/connectivity
google.golang.org/grpc/attributes
google.golang.org/grpc/internal/credentials
google.golang.org/grpc/internal/envconfig
github.com/spf13/cobra/doc
google.golang.org/grpc/internal
google.golang.org/grpc/credentials
google.golang.org/grpc/experimental/stats
google.golang.org/grpc/internal/channelz
google.golang.org/grpc/metadata
google.golang.org/grpc/resolver
google.golang.org/grpc/internal/grpclog
google.golang.org/protobuf/protoadapt
google.golang.org/grpc/codes
google.golang.org/grpc/internal/pretty
google.golang.org/grpc/channelz
google.golang.org/grpc/balancer
google.golang.org/grpc/credentials/insecure
google.golang.org/grpc/internal/grpcutil
google.golang.org/grpc/mem
google.golang.org/grpc/balancer/base
google.golang.org/grpc/balancer/pickfirst
google.golang.org/grpc/internal/backoff
google.golang.org/grpc/balancer/roundrobin
google.golang.org/grpc/encoding
google.golang.org/grpc/internal/balancer/gracefulswitch
google.golang.org/grpc/internal/balancerload
google.golang.org/grpc/encoding/proto
google.golang.org/protobuf/types/known/durationpb
google.golang.org/protobuf/types/known/anypb
google.golang.org/grpc/internal/buffer
google.golang.org/grpc/internal/grpcsync
google.golang.org/grpc/binarylog/grpc_binarylog_v1
google.golang.org/genproto/googleapis/rpc/status
google.golang.org/grpc/internal/idle
google.golang.org/grpc/internal/metadata
google.golang.org/grpc/internal/status
google.golang.org/grpc/internal/serviceconfig
google.golang.org/grpc/internal/resolver/passthrough
google.golang.org/grpc/status
google.golang.org/grpc/internal/resolver
google.golang.org/grpc/internal/transport/networktype
google.golang.org/grpc/stats
google.golang.org/grpc/internal/binarylog
google.golang.org/grpc/internal/resolver/unix
github.com/caddyserver/caddy/v2/caddyconfig
github.com/caddyserver/caddy/v2/modules/caddyevents
google.golang.org/grpc/internal/stats
golang.org/x/net/internal/httpcommon
golang.org/x/net/http2
google.golang.org/grpc/internal/syscall
google.golang.org/grpc/keepalive
github.com/caddyserver/caddy/v2/caddyconfig/caddyfile
google.golang.org/grpc/peer
google.golang.org/grpc/tap
net/http/httputil
google.golang.org/grpc/balancer/grpclb/state
google.golang.org/grpc/internal/resolver/dns/internal
google.golang.org/grpc/internal/resolver/dns
google.golang.org/grpc/resolver/dns
google.golang.org/protobuf/types/known/structpb
google.golang.org/protobuf/types/descriptorpb
io/ioutil
github.com/caddyserver/caddy/v2/cmd
container/heap
github.com/dgraph-io/badger/y
github.com/dgraph-io/ristretto/z/simd
google.golang.org/protobuf/internal/editionssupport
google.golang.org/protobuf/types/gofeaturespb
github.com/dustin/go-humanize
google.golang.org/protobuf/reflect/protodesc
github.com/dgraph-io/ristretto/z
github.com/golang/protobuf/proto
github.com/AndreasBriese/bbloom
github.com/dgraph-io/badger/skl
github.com/dgraph-io/badger/table
github.com/smallstep/nosql/database
github.com/cespare/xxhash
github.com/klauspost/compress/fse
github.com/klauspost/compress/internal/snapref
github.com/klauspost/compress/zstd/internal/xxhash
github.com/klauspost/compress/huff0
github.com/dgraph-io/ristretto
google.golang.org/grpc/internal/transport
github.com/dgryski/go-farm
github.com/dgraph-io/badger/pb
github.com/dgraph-io/badger/v2/pb
github.com/klauspost/compress/zstd
github.com/dgraph-io/badger
github.com/golang/snappy
go.etcd.io/bbolt
google.golang.org/grpc
github.com/smallstep/nosql/bolt
github.com/go-sql-driver/mysql
github.com/dgraph-io/badger/v2/y
github.com/dgraph-io/badger/v2/skl
github.com/dgraph-io/badger/v2/table
github.com/dgraph-io/badger/v2
github.com/smallstep/nosql/mysql
github.com/jackc/chunkreader/v2
github.com/jackc/pgconn/internal/ctxwatch
github.com/jackc/pgio
github.com/jackc/pgpassfile
go.step.sm/linkedca
github.com/jackc/pgproto3/v2
github.com/smallstep/nosql/badger/v1
github.com/jackc/pgservicefile
golang.org/x/crypto/pbkdf2
golang.org/x/text/internal/tag
golang.org/x/text/runes
golang.org/x/text/internal/language
golang.org/x/text/width
github.com/jackc/pgtype
golang.org/x/text/internal/language/compact
github.com/smallstep/certificates/authority/admin
golang.org/x/text/language
github.com/jackc/pgx/v4/internal/sanitize
go.step.sm/crypto/randutil
golang.org/x/text/internal
golang.org/x/crypto/curve25519
golang.org/x/text/cases
golang.org/x/crypto/ed25519
github.com/slackhq/nebula/cert
github.com/smallstep/certificates/errs
golang.org/x/text/secure/precis
github.com/smallstep/nosql/badger/v2
go.step.sm/crypto/internal/emoji
go.step.sm/crypto/fingerprint
dario.cat/mergo
github.com/Masterminds/goutils
github.com/Masterminds/semver/v3
github.com/huandu/xstrings
github.com/jackc/pgconn
github.com/mitchellh/reflectwalk
github.com/mitchellh/copystructure
github.com/shopspring/decimal
github.com/spf13/cast
github.com/jackc/pgconn/stmtcache
golang.org/x/crypto/blowfish
golang.org/x/crypto/scrypt
golang.org/x/crypto/bcrypt
hash/adler32
golang.org/x/crypto/ssh/internal/bcrypt_pbkdf
github.com/rs/xid
github.com/Masterminds/sprig/v3
golang.org/x/crypto/ssh
github.com/smallstep/certificates/middleware/requestid
github.com/urfave/cli
go.step.sm/crypto/internal/templates
go.step.sm/crypto/x509util
github.com/chzyer/readline
github.com/manifoldco/promptui/list
github.com/manifoldco/promptui/screenbuf
github.com/manifoldco/promptui
go.step.sm/cli-utils/ui
github.com/mattn/go-isatty
github.com/smallstep/certificates/policy
github.com/mattn/go-colorable
go.step.sm/cli-utils/errs
github.com/mgutz/ansi
go.step.sm/cli-utils/step
go.step.sm/cli-utils/pkg/blackfriday
github.com/smallstep/certificates/authority/policy
golang.org/x/net/html
golang.org/x/crypto/ssh/agent
go.step.sm/crypto/sshutil
github.com/go-jose/go-jose/v3/cipher
github.com/go-jose/go-jose/v3/json
github.com/smallstep/certificates/webhook
go.step.sm/cli-utils/usage
go.step.sm/crypto/internal/utils/utfbom
go.step.sm/crypto/internal/utils
filippo.io/edwards25519/field
go.step.sm/cli-utils/command
go.step.sm/cli-utils/fileutil
github.com/go-jose/go-jose/v3
filippo.io/edwards25519
github.com/smallstep/certificates/templates
go.step.sm/crypto/x25519
go.step.sm/crypto/internal/bcrypt_pbkdf
go.step.sm/crypto/keyutil
golang.org/x/crypto/nacl/secretbox
go.step.sm/crypto/kms/uri
go.step.sm/crypto/pemutil
go.step.sm/crypto/kms/apiv1
github.com/go-jose/go-jose/v3/cryptosigner
github.com/jackc/pgx/v4
github.com/go-jose/go-jose/v3/jwt
github.com/smallstep/certificates/authority/internal/constraints
go.step.sm/crypto/kms/softkms
go.step.sm/crypto/kms
internal/sysinfo
go.step.sm/crypto/jose
testing
github.com/smallstep/certificates/cas/apiv1
github.com/smallstep/certificates/cas/softcas
github.com/jackc/pgx/v4/stdlib
github.com/smallstep/certificates/authority/provisioner
github.com/smallstep/certificates/cas
github.com/smallstep/nosql/postgresql
github.com/go-logfmt/logfmt
github.com/smallstep/nosql
github.com/smallstep/certificates/authority/admin/db/nosql
github.com/go-kit/log
github.com/smallstep/scep/cryptoutil
github.com/smallstep/scep/x509util
go.step.sm/crypto/kms/sshagentkms
github.com/go-kit/log/level
github.com/smallstep/pkcs7
github.com/go-kit/kit/log/level
go.step.sm/crypto/tlsutil
github.com/smallstep/truststore
github.com/smallstep/scep
github.com/cloudflare/circl/internal/conv
github.com/cloudflare/circl/internal/sha3
github.com/cloudflare/circl/kem
github.com/cloudflare/circl/math/fp25519
github.com/cloudflare/circl/math/fp448
github.com/cloudflare/circl/simd/keccakf1600
github.com/cloudflare/circl/dh/x25519
github.com/cloudflare/circl/dh/x448
github.com/cloudflare/circl/pke/kyber/internal/common
github.com/tailscale/tscert/internal/paths
github.com/mitchellh/go-ps
github.com/cloudflare/circl/pke/kyber/kyber768/internal
github.com/tailscale/tscert/internal/safesocket
github.com/tailscale/tscert
github.com/cloudflare/circl/pke/kyber/kyber768
github.com/cloudflare/circl/kem/kyber/kyber768
github.com/cloudflare/circl/kem/mlkem/mlkem768
google.golang.org/protobuf/types/known/emptypb
github.com/google/cel-go/common/runes
google.golang.org/protobuf/types/dynamicpb
github.com/cloudflare/circl/kem/xwing
cel.dev/expr
github.com/smallstep/certificates/authority/administrator
github.com/smallstep/certificates/db
github.com/smallstep/certificates/scep
github.com/cloudflare/circl/hpke
github.com/smallstep/certificates/authority/config
google.golang.org/genproto/googleapis/api/expr/v1alpha1
google.golang.org/protobuf/types/known/wrapperspb
github.com/smallstep/certificates/authority
github.com/stoewer/go-strcase
github.com/antlr4-go/antlr/v4
github.com/google/cel-go/checker/decls
github.com/google/cel-go/common
github.com/google/cel-go/common/types/pb
github.com/google/cel-go/common/types/ref
golang.org/x/text/internal/catmsg
github.com/google/cel-go/common/types/traits
github.com/google/cel-go/common/types
github.com/google/cel-go/common/functions
golang.org/x/text/internal/stringset
golang.org/x/text/internal/number
golang.org/x/text/message/catalog
golang.org/x/text/feature/plural
golang.org/x/text/internal/format
golang.org/x/text/message
github.com/caddyserver/caddy/v2/modules/caddypki
github.com/google/cel-go/interpreter/functions
github.com/prometheus/client_golang/prometheus/promauto
golang.org/x/net/http2/h2c
golang.org/x/sync/singleflight
github.com/caddyserver/caddy/v2/modules/caddytls
github.com/klauspost/compress/flate
github.com/google/cel-go/common/ast
github.com/google/cel-go/common/decls
github.com/google/cel-go/common/env
github.com/google/cel-go/common/stdlib
github.com/google/cel-go/common/containers
github.com/google/cel-go/common/debug
github.com/google/cel-go/interpreter
github.com/klauspost/compress/gzip
github.com/BurntSushi/toml/internal
github.com/BurntSushi/toml
encoding/xml
github.com/google/cel-go/parser/gen
github.com/dlclark/regexp2/syntax
github.com/yuin/goldmark/util
github.com/pires/go-proxyproto
github.com/caddyserver/caddy/v2/modules/caddyhttp/proxyprotocol
github.com/caddyserver/caddy/v2/modules/internal/network
github.com/felixge/httpsnoop
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/internal/request
go.opentelemetry.io/otel/internal/attribute
go.opentelemetry.io/otel/attribute
github.com/dlclark/regexp2
go.opentelemetry.io/otel/codes
go.opentelemetry.io/otel/semconv/v1.20.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/internal/semconvutil
github.com/alecthomas/chroma/v2
github.com/go-logr/logr
github.com/go-logr/logr/funcr
github.com/go-logr/stdr
go.opentelemetry.io/otel/metric
github.com/alecthomas/chroma/v2/formatters/html
github.com/alecthomas/chroma/v2/styles
github.com/alecthomas/chroma/v2/lexers
go.opentelemetry.io/otel/internal/baggage
go.opentelemetry.io/otel/baggage
go.opentelemetry.io/otel/trace
go.opentelemetry.io/otel/propagation
github.com/google/cel-go/parser
go.opentelemetry.io/otel/internal/global
go.opentelemetry.io/otel
go.opentelemetry.io/otel/metric/noop
go.opentelemetry.io/otel/semconv/v1.26.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/internal/semconv
github.com/google/cel-go/checker
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp
github.com/yuin/goldmark/text
go.opentelemetry.io/otel/sdk/internal/env
go.opentelemetry.io/otel/sdk/internal/x
github.com/yuin/goldmark/ast
go.opentelemetry.io/otel/sdk/resource
go.opentelemetry.io/otel/trace/noop
go.opentelemetry.io/contrib/propagators/b3
go.opentelemetry.io/otel/sdk/trace
go.opentelemetry.io/contrib/propagators/jaeger
go.opentelemetry.io/contrib/propagators/ot
go.opentelemetry.io/proto/otlp/common/v1
github.com/google/cel-go/cel
github.com/yuin/goldmark/parser
github.com/yuin/goldmark/renderer
github.com/yuin/goldmark/extension/ast
github.com/yuin/goldmark/renderer/html
go.opentelemetry.io/contrib/propagators/aws/xray
go.opentelemetry.io/contrib/propagators/autoprop
go.opentelemetry.io/proto/otlp/resource/v1
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc/internal
go.opentelemetry.io/proto/otlp/trace/v1
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc/internal/envconfig
github.com/cenkalti/backoff/v4
go.opentelemetry.io/otel/exporters/otlp/otlptrace/internal/tracetransform
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc/internal/retry
github.com/yuin/goldmark
google.golang.org/grpc/encoding/gzip
go.opentelemetry.io/otel/exporters/otlp/otlptrace
github.com/yuin/goldmark-highlighting/v2
github.com/yuin/goldmark/extension
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc/internal/otlpconfig
github.com/grpc-ecosystem/grpc-gateway/v2/utilities
github.com/grpc-ecosystem/grpc-gateway/v2/internal/httprule
google.golang.org/genproto/googleapis/api/httpbody
google.golang.org/grpc/health/grpc_health_v1
github.com/google/cel-go/ext
google.golang.org/protobuf/types/known/fieldmaskpb
google.golang.org/genproto/googleapis/rpc/errdetails
github.com/grpc-ecosystem/grpc-gateway/v2/runtime
go.opentelemetry.io/otel/semconv/v1.17.0
github.com/go-chi/chi/v5
github.com/x448/float16
github.com/fxamacker/cbor/v2
github.com/google/go-tpm/tpmutil
github.com/google/go-tpm/legacy/tpm2
go.opentelemetry.io/proto/otlp/collector/trace/v1
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc
github.com/google/go-tpm/legacy/tpm2/credactivation
github.com/google/go-tpm/tpm
github.com/google/certificate-transparency-go/asn1
github.com/smallstep/go-attestation/attest/internal
github.com/smallstep/certificates/api/models
github.com/smallstep/certificates/api/read
github.com/google/certificate-transparency-go/tls
github.com/google/certificate-transparency-go/x509/pkix
github.com/sirupsen/logrus
github.com/caddyserver/caddy/v2/modules/caddyhttp
github.com/smallstep/certificates/internal/userid
internal/saferio
github.com/google/certificate-transparency-go/x509
encoding/gob
github.com/smallstep/certificates/logging
github.com/smallstep/certificates/api
github.com/caddyserver/caddy/v2/modules/caddytls/standardstek
github.com/caddyserver/caddy/v2/modules/filestorage
gopkg.in/natefinch/lumberjack.v2
github.com/google/go-tspi/verification
github.com/prometheus/client_golang/prometheus/promhttp
github.com/smallstep/go-attestation/attest
github.com/aws/aws-sdk-go/aws/awserr
github.com/caddyserver/caddy/v2/modules/caddytls/distributedstek
github.com/aws/aws-sdk-go/internal/ini
github.com/smallstep/certificates/acme
github.com/aws/aws-sdk-go/internal/shareddefaults
github.com/aws/aws-sdk-go/internal/sync/singleflight
github.com/aws/aws-sdk-go/aws/endpoints
github.com/aws/aws-sdk-go/aws/credentials
github.com/aws/aws-sdk-go/internal/sdkio
github.com/jmespath/go-jmespath
github.com/smallstep/certificates/acme/api
github.com/smallstep/certificates/acme/db/nosql
github.com/aws/aws-sdk-go/aws/awsutil
github.com/aws/aws-sdk-go/internal/sdkrand
github.com/aws/aws-sdk-go/aws/credentials/processcreds
github.com/aws/aws-sdk-go/internal/strings
github.com/aws/aws-sdk-go/internal/sdkuri
github.com/aws/aws-sdk-go/aws/arn
github.com/caddyserver/caddy/v2/caddyconfig/httpcaddyfile
github.com/caddyserver/caddy/v2/modules/logging
github.com/aws/aws-sdk-go/internal/s3shared/arn
github.com/caddyserver/caddy/v2/modules/caddyevents/eventsconfig
github.com/caddyserver/caddy/v2/modules/caddyfs
github.com/caddyserver/caddy/v2/modules/caddyhttp/caddyauth
github.com/caddyserver/caddy/v2/modules/caddyhttp/encode
github.com/caddyserver/caddy/v2/modules/caddyhttp/rewrite
github.com/caddyserver/caddy/v2/modules/caddyhttp/templates
github.com/caddyserver/caddy/v2/modules/caddyhttp/encode/brotli
github.com/caddyserver/caddy/v2/modules/caddyhttp/encode/gzip
github.com/caddyserver/caddy/v2/modules/caddyhttp/encode/zstd
github.com/caddyserver/caddy/v2/modules/caddyhttp/headers
github.com/caddyserver/caddy/v2/modules/caddyhttp/intercept
github.com/caddyserver/caddy/v2/modules/caddyhttp/fileserver
github.com/caddyserver/caddy/v2/modules/caddyhttp/logging
github.com/caddyserver/caddy/v2/modules/caddyhttp/map
github.com/caddyserver/caddy/v2/modules/caddyhttp/push
github.com/caddyserver/caddy/v2/modules/caddyhttp/requestbody
github.com/caddyserver/caddy/v2/modules/caddyhttp/reverseproxy
github.com/caddyserver/caddy/v2/modules/caddyhttp/tracing
github.com/caddyserver/caddy/v2/modules/caddypki/acmeserver
github.com/caddyserver/caddy/v2/modules/metrics
github.com/caddyserver/caddy/v2/modules/caddyhttp/reverseproxy/forwardauth
github.com/caddyserver/caddy/v2/modules/caddyhttp/reverseproxy/fastcgi
github.com/caddyserver/caddy/v2/modules/caddyhttp/standard
github.com/caddyserver/caddy/v2/modules/standard
github.com/aws/aws-sdk-go/aws
github.com/aws/aws-sdk-go/aws/request
github.com/aws/aws-sdk-go/aws/auth/bearer
github.com/aws/aws-sdk-go/private/protocol/eventstream
github.com/aws/aws-sdk-go/aws/client
github.com/aws/aws-sdk-go/aws/corehandlers
github.com/aws/aws-sdk-go/private/protocol
github.com/aws/aws-sdk-go/aws/csm
github.com/aws/aws-sdk-go/internal/s3shared
github.com/aws/aws-sdk-go/aws/ec2metadata
github.com/aws/aws-sdk-go/private/protocol/rest
github.com/aws/aws-sdk-go/private/protocol/json/jsonutil
github.com/aws/aws-sdk-go/private/protocol/query/queryutil
github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil
github.com/aws/aws-sdk-go/private/protocol/jsonrpc
github.com/aws/aws-sdk-go/aws/signer/v4
github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds
github.com/aws/aws-sdk-go/private/protocol/restjson
github.com/aws/aws-sdk-go/aws/credentials/endpointcreds
github.com/aws/aws-sdk-go/private/protocol/query
github.com/aws/aws-sdk-go/service/sso
github.com/aws/aws-sdk-go/service/ssooidc
github.com/aws/aws-sdk-go/service/sts
github.com/aws/aws-sdk-go/aws/defaults
github.com/aws/aws-sdk-go/internal/s3shared/s3err
github.com/aws/aws-sdk-go/private/checksum
github.com/aws/aws-sdk-go/service/sso/ssoiface
github.com/aws/aws-sdk-go/private/protocol/eventstream/eventstreamapi
github.com/aws/aws-sdk-go/service/sts/stsiface
github.com/aws/aws-sdk-go/private/protocol/restxml
github.com/aws/aws-sdk-go/aws/credentials/stscreds
github.com/aws/aws-sdk-go/aws/credentials/ssocreds
github.com/aws/aws-sdk-go/service/s3
github.com/aws/aws-sdk-go/aws/session
github.com/lindenlab/caddy-s3-proxy
caddy
2025/10/01 01:41:31 [INFO] Build complete: ./caddy
2025/10/01 01:41:31 [INFO] Cleaning up temporary folder: /tmp/buildenv_2025-10-01-0135.1505779828

././caddy version
v2.10.0 h1:fonubSaQKF1YANl8TXqGcn4IbIRUDdfAkpcsfI/vX5U=
===>  Staging for caddy-custom-2.10.0.2.0.4.4.1_4
===>   Generating temporary packing list
install  -s -m 555 /usr/ports/www/caddy-custom/work/caddy-custom-2.10.0.2.0.4.4.1/caddy /usr/ports/www/caddy-custom/work/stage/usr/local/bin
====> Compressing man pages (compress-man)
===> Staging rc.d startup script(s)
===>  Installing for caddy-custom-2.10.0.2.0.4.4.1_4
===>  Checking if caddy-custom is already installed
===>   Registering installation for caddy-custom-2.10.0.2.0.4.4.1_4
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] Installing caddy-custom-2.10.0.2.0.4.4.1_4...
===>  Cleaning for xcaddy-0.4.4_1
===>  Cleaning for caddy-custom-2.10.0.2.0.4.4.1_4
Step 27: Change directory to /root
Step 28: Remove /usr/ports
Step 29: Package autoremove
Updating database digests format: .. done
Checking integrity... done (0 conflicting)
Deinstallation has been requested for the following 2 packages:

Installed packages to be REMOVED:
	readline: 8.2.13_2
	xcaddy: 0.4.4_1

Number of packages to be removed: 2

The operation will free 6 MiB.
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/2] Deinstalling readline-8.2.13_2...
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [1/2] Deleting files for readline-8.2.13_2: .......... done
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [2/2] Deinstalling xcaddy-0.4.4_1...
[caddy-s3-nomad-amd64-14_3.vsf00002.cpt.za.honeyguide.net] [2/2] Deleting files for xcaddy-0.4.4_1: .... done
Step 30: Clean package installation
The following package files will be deleted:
	/var/cache/pkg/git-lite-2.51.0~c18cf89058.pkg
	/var/cache/pkg/expat-2.7.2~e29146bf22.pkg
	/var/cache/pkg/acme.sh-3.1.1_1.pkg
	/var/cache/pkg/rsync-3.4.1_3.pkg
	/var/cache/pkg/unzip-6.0_8.pkg
	/var/cache/pkg/pkg-2.3.1~cca2f48914.pkg
	/var/cache/pkg/pcre2-10.45_1.pkg
	/var/cache/pkg/expat-2.7.2.pkg
	/var/cache/pkg/jq-1.8.1.pkg
	/var/cache/pkg/bash-5.3.3_1~e2f84a112c.pkg
	/var/cache/pkg/unzip-6.0_8~9039efc46b.pkg
	/var/cache/pkg/nano-8.6.pkg
	/var/cache/pkg/bash-5.3.3_1.pkg
	/var/cache/pkg/go-1.24_12,2~bca05b294d.pkg
	/var/cache/pkg/ca_root_nss-3.115_2.pkg
	/var/cache/pkg/rsync-3.4.1_3~56df7e569c.pkg
	/var/cache/pkg/go124-1.24.7.pkg
	/var/cache/pkg/socat-1.8.0.3~7457bc478e.pkg
	/var/cache/pkg/socat-1.8.0.3.pkg
	/var/cache/pkg/curl-8.15.0~75fe28eb56.pkg
	/var/cache/pkg/go-1.24_12,2.pkg
	/var/cache/pkg/pkg-2.3.1.pkg
	/var/cache/pkg/acme.sh-3.1.1_1~b819fcb015.pkg
	/var/cache/pkg/jq-1.8.1~0610ffe53f.pkg
	/var/cache/pkg/ca_root_nss-3.115_2~a4d78837c5.pkg
	/var/cache/pkg/go124-1.24.7~b8d7b6939b.pkg
	/var/cache/pkg/curl-8.15.0.pkg
	/var/cache/pkg/openssl-3.0.17,1.pkg
	/var/cache/pkg/openssl-3.0.17,1~36dc3dae1f.pkg
	/var/cache/pkg/git-lite-2.51.0.pkg
	/var/cache/pkg/nano-8.6~a34336f28a.pkg
	/var/cache/pkg/pcre2-10.45_1~441975c682.pkg
The cleanup will free 83 MiB
Deleting files: .......... done
Step 31: Clean cook artifacts
Step 32: Install pot local
Step 33: Set file ownership on cook scripts
Step 34: Make cook script executable
setting executable bit on /usr/local/bin/cook
Step 35: Create rc.d script to start cook
creating rc.d script to start cook
Step 36: Make rc.d script to start cook executable
Setting executable bit on cook rc file
=====>  Stop the pot caddy-s3-nomad-amd64-14_3
=====>  Remove p468dc84814ebd epair network interfaces
=====>  unmount /mnt/srv/pot/jails/caddy-s3-nomad-amd64-14_3/m/tmp
=====>  unmount /mnt/srv/pot/jails/caddy-s3-nomad-amd64-14_3/m/dev
=====>  Reverting pot caddy-s3-nomad-amd64-14_3 to non-persistent
=====>  Flavour: caddy-s3-nomad+1
=====>  Executing caddy-s3-nomad+1 pot commands on caddy-s3-nomad-amd64-14_3
=====>  No shell script available for the flavour caddy-s3-nomad+1
=====>  Flavour: caddy-s3-nomad+2
=====>  Executing caddy-s3-nomad+2 pot commands on caddy-s3-nomad-amd64-14_3
=====>  No shell script available for the flavour caddy-s3-nomad+2
=====>  Flavour: caddy-s3-nomad+3
=====>  Executing caddy-s3-nomad+3 pot commands on caddy-s3-nomad-amd64-14_3
=====>  No shell script available for the flavour caddy-s3-nomad+3
=====>  Flavour: caddy-s3-nomad+4
=====>  Executing caddy-s3-nomad+4 pot commands on caddy-s3-nomad-amd64-14_3
=====>  No shell script available for the flavour caddy-s3-nomad+4
===>  exporting caddy-s3-nomad-amd64-14_3 @ 1759282896 to /tmp/caddy-s3-nomad-amd64-14_3_0.24.1.xz

This site © Honeyguide Group (Pty) Ltd, all the hosted software their respective license owners 2020 - 2021 - Disclaimer