https://github.com/aserto-dev/auth0-gw
Auth0 Gateway
https://github.com/aserto-dev/auth0-gw
Last synced: 4 months ago
JSON representation
Auth0 Gateway
- Host: GitHub
- URL: https://github.com/aserto-dev/auth0-gw
- Owner: aserto-dev
- License: apache-2.0
- Created: 2023-06-28T21:26:47.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-14T10:49:27.000Z (over 1 year ago)
- Last Synced: 2025-04-20T13:03:21.509Z (about 1 year ago)
- Language: Go
- Size: 114 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# auth0-gw
Auth0 Gateway
config.yaml
```
---
gateway:
port: 8383
path: /events
directory:
host: directory.prod.aserto.com:8443
api_key:
tenant_id:
insecure: false
auth0:
domain:
client_id:
client_secret:
loader:
bin_path: /app
template: /tmpl/transform.tmpl
scheduler:
interval: 15m
```
```
docker run -ti \
--name auth0-gw \
--rm \
-p 8383:8383 \
-v $PWD:/cfg \
-v $PWD/templates:/tmpl \
ghcr.io/aserto-dev/auth0-gw:latest run --config=/cfg/config.yaml --template=/tmpl/transform.tmpl
```