From 8c5f613b8676179d4ebb81c048f91bb685d467b5 Mon Sep 17 00:00:00 2001 From: BryantHe Date: Sun, 10 Mar 2024 14:07:45 +0800 Subject: [PATCH] update apisix --- apisix/apisix_conf/config.yaml | 2 +- docker-compose-apisix.yml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/apisix/apisix_conf/config.yaml b/apisix/apisix_conf/config.yaml index 09fb61f..80acf52 100644 --- a/apisix/apisix_conf/config.yaml +++ b/apisix/apisix_conf/config.yaml @@ -40,7 +40,7 @@ deployment: etcd: host: # it's possible to define multiple etcd hosts addresses of the same etcd cluster. - - "http://etcd:2379" # multiple etcd address + - "http://127.0.0.1:2379" # multiple etcd address prefix: "/apisix" # apisix configurations prefix timeout: 30 # 30 seconds health_check_retry: 2 # etcd retry time that only affects the health check, default 2 diff --git a/docker-compose-apisix.yml b/docker-compose-apisix.yml index 9641ed4..58309ee 100644 --- a/docker-compose-apisix.yml +++ b/docker-compose-apisix.yml @@ -71,13 +71,12 @@ services: etcd: image: bitnami/etcd:latest - hostname: 'etcd' volumes: - etcd_data:/bitnami/etcd environment: ETCD_ENABLE_V2: "true" ALLOW_NONE_AUTHENTICATION: "yes" - ETCD_ADVERTISE_CLIENT_URLS: "http://etcd:2379" + ETCD_ADVERTISE_CLIENT_URLS: "http://127.0.0.1:2379" ETCD_LISTEN_CLIENT_URLS: "http://0.0.0.0:2379" ports: - "2379:2379/tcp"