gitextract_qmak9396/ ├── .github/ │ ├── CODEOWNERS │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── SECURITY.md │ ├── renovate.json │ └── workflows/ │ ├── ci.yaml │ ├── deploy.yaml │ ├── labels.yaml │ ├── lock.yaml │ ├── pr-labels.yaml │ ├── release-drafter.yaml │ └── stale.yaml ├── .mdlrc ├── .yamllint ├── LICENSE.md ├── README.md └── influxdb/ ├── .README.j2 ├── DOCS.md ├── Dockerfile ├── build.yaml ├── config.yaml └── rootfs/ └── etc/ ├── cont-init.d/ │ ├── create-users.sh │ ├── influxdb.sh │ ├── kapacitor.sh │ └── nginx.sh ├── influxdb/ │ └── influxdb.conf ├── kapacitor/ │ └── templates/ │ └── kapacitor.gtpl ├── nginx/ │ ├── includes/ │ │ ├── mime.types │ │ ├── proxy_params.conf │ │ ├── resolver.conf │ │ ├── server_params.conf │ │ ├── ssl_params.conf │ │ └── upstream.conf │ ├── lua/ │ │ └── ha-auth.lua │ ├── modules/ │ │ ├── ndk_http.conf │ │ └── ngx_http_lua.conf │ ├── nginx.conf │ └── servers/ │ ├── direct-ssl.disabled │ ├── direct.disabled │ └── ingress.conf └── services.d/ ├── chronograf/ │ ├── finish │ └── run ├── influxdb/ │ ├── finish │ └── run ├── kapacitor/ │ ├── finish │ └── run └── nginx/ ├── finish └── run