You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by GitBox <gi...@apache.org> on 2020/12/14 10:16:45 UTC

[GitHub] [apisix] liyin37 edited a comment on issue #3037: after configoure the SSL,log error

liyin37 edited a comment on issue #3037:
URL: https://github.com/apache/apisix/issues/3037#issuecomment-744328343


   the  docker-compose.yaml is :
   
   ```yaml
   version: "3"
   services:
     apisix:
       container_name: gistack-apisix
       image: apache/apisix:2.1-centos
       restart: always
       volumes:
         - /data/apisix/apisix_log:/usr/local/apisix/logs
         - $PWD/common/config/apisix_conf/config.yaml:/usr/local/apisix/conf/config.yaml:ro
         - $PWD/common/ssl:/usr/local/apisix/conf/cert:ro
       depends_on:
         - etcd
       # network_mode: host
       ports:
         - "9080:9080/tcp"
         - "9443:9443/tcp"
     etcd:
       container_name: gistack-etcd
       image: bitnami/etcd:3.4.9
       user: root
       restart: always
       volumes:
         - /data/apisix/etcd_data:/etcd_data
       environment:
         ETCD_DATA_DIR: /etcd_data
         ETCD_ENABLE_V2: "true"
         ALLOW_NONE_AUTHENTICATION: "yes"
         ETCD_ADVERTISE_CLIENT_URLS: "http://0.0.0.0:2379"
         ETCD_LISTEN_CLIENT_URLS: "http://0.0.0.0:2379"
       # network_mode: host
       ports:
         - "2379:2379/tcp"


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org