From 96a86d51d6b9dd0a7a66af1287defe9fb4ff75e3 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 1 May 2026 16:46:08 +0900 Subject: feat(mioproxy): update mioproxy to 0.5.0 --- mioproxy.local.hcl | 2 +- mioproxy.prod.hcl | 4 ++-- provisioning/run.sh | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mioproxy.local.hcl b/mioproxy.local.hcl index 73ea7b12..a8d23ce8 100644 --- a/mioproxy.local.hcl +++ b/mioproxy.local.hcl @@ -1,7 +1,7 @@ user = "ken" server http { - host = "127.0.0.1" + hosts = ["127.0.0.1", "::1"] port = 8000 proxy default { diff --git a/mioproxy.prod.hcl b/mioproxy.prod.hcl index 55ec6443..fa471e4c 100644 --- a/mioproxy.prod.hcl +++ b/mioproxy.prod.hcl @@ -1,7 +1,7 @@ user = "ken" server http { - host = "0.0.0.0" + hosts = ["0.0.0.0", "::"] port = 80 redirect_to_https = true @@ -11,7 +11,7 @@ server http { } server https { - host = "0.0.0.0" + hosts = ["0.0.0.0", "::"] port = 443 tls_cert_file = "letsencrypt/lego/certificates/nsfisis.dev.crt" diff --git a/provisioning/run.sh b/provisioning/run.sh index 58129e0f..ab078c5b 100755 --- a/provisioning/run.sh +++ b/provisioning/run.sh @@ -12,8 +12,8 @@ export LEGO_CONF_EMAIL=nsfisis@gmail.com export LEGO_CONF_WEBROOT="${REPO_ROOT}/letsencrypt/webroot" export LEGO_CONF_PATH="${REPO_ROOT}/letsencrypt/lego" export LEGO_CONF_DOMAINS=nsfisis.dev,about.nsfisis.dev,blog.nsfisis.dev,repos.nsfisis.dev,slides.nsfisis.dev -export GOLANG_VERSION=1.21.1 -export MIOPROXY_VERSION=v0.3.0 +export GOLANG_VERSION=1.24.13 +export MIOPROXY_VERSION=v0.5.0 mitamae_bin_url="https://github.com/itamae-kitchen/mitamae/releases/download/${MITAMAE_VERSION}/mitamae-${MITAMAE_ARCH}.tar.gz" -- cgit v1.3.1