29 lines
1.5 KiB
Text
29 lines
1.5 KiB
Text
|
|
# Copy to `.env` in this directory and fill in. `.env` is read by docker
|
||
|
|
# compose automatically -- do not commit it, and do not share the secret.
|
||
|
|
|
||
|
|
# --------------------------------------------------------------------------
|
||
|
|
# EVE SSO -- from YOUR OWN application at
|
||
|
|
# https://developers.eveonline.com/applications
|
||
|
|
#
|
||
|
|
# Every instance needs its own registered application. The redirect URI below
|
||
|
|
# is registered per-application, and this is a confidential client (the token
|
||
|
|
# exchange sends the secret), so these cannot be shared between people.
|
||
|
|
# --------------------------------------------------------------------------
|
||
|
|
EVE_SSO_CLIENT_ID=
|
||
|
|
EVE_SSO_CLIENT_SECRET=
|
||
|
|
|
||
|
|
# Must match a "Callback URL" on that application EXACTLY, including the port
|
||
|
|
# and the /callback path. Use the address you will actually open the app at --
|
||
|
|
# the LAN IP of the docker host, not localhost, unless you browse from the host
|
||
|
|
# itself. A mismatch fails at login with an SSO error, not at startup.
|
||
|
|
EVE_SSO_REDIRECT_URI=http://<docker-host-lan-ip>:8000/callback
|
||
|
|
|
||
|
|
# --------------------------------------------------------------------------
|
||
|
|
# Who is running this instance
|
||
|
|
# --------------------------------------------------------------------------
|
||
|
|
# Sent as the contact address in the User-Agent on every call this app makes to
|
||
|
|
# ESI and to mokaam.dk. Both operators expect a real address, and CCP's
|
||
|
|
# published guidance is that it identifies whoever is running the software.
|
||
|
|
# Leave it unset and someone else answers for your traffic.
|
||
|
|
EVE_ASSISTANT_CONTACT_EMAIL=
|