diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-01 16:48:11 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-01 16:49:08 +0900 |
| commit | a453b0f963ced38b87f2bbad1ec8109d82b7a187 (patch) | |
| tree | b8ed7f8a6ed594595dd0e3e10f5eb410ddecbe0b | |
| parent | 2ca434ab90734e8186a63133fd41be72786bdca8 (diff) | |
| download | nil.ninja-a453b0f963ced38b87f2bbad1ec8109d82b7a187.tar.gz nil.ninja-a453b0f963ced38b87f2bbad1ec8109d82b7a187.tar.zst nil.ninja-a453b0f963ced38b87f2bbad1ec8109d82b7a187.zip | |
feat(mioproxy): update mioproxy to 0.5.0
| -rw-r--r-- | mioproxy.local.hcl | 2 | ||||
| -rw-r--r-- | mioproxy.prod.hcl | 4 | ||||
| -rwxr-xr-x | provisioning/run.sh | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/mioproxy.local.hcl b/mioproxy.local.hcl index ee7d06a..a54221a 100644 --- a/mioproxy.local.hcl +++ b/mioproxy.local.hcl @@ -1,5 +1,5 @@ server http { - host = "127.0.0.1" + hosts = ["127.0.0.1", "::1"] port = 8000 proxy albatross { diff --git a/mioproxy.prod.hcl b/mioproxy.prod.hcl index b84b62b..9be8e6e 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/nil.ninja.crt" diff --git a/provisioning/run.sh b/provisioning/run.sh index cec8633..8a3bce7 100755 --- a/provisioning/run.sh +++ b/provisioning/run.sh @@ -15,8 +15,8 @@ export LEGO_CONF_DOMAINS="\ nil.ninja,\ go.nil.ninja,\ t.nil.ninja" -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" |
