37 lines
2 KiB
Text
37 lines
2 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
|
|
|
|
# Host port to serve on. Change it if something already uses 8000; the port you
|
|
# pick must match the one in EVE_SSO_REDIRECT_URI above.
|
|
EVE_ASSISTANT_PORT=8000
|
|
|
|
# --------------------------------------------------------------------------
|
|
# Who is running this instance
|
|
# --------------------------------------------------------------------------
|
|
# Optional HERE: this only SEEDS the "Contact address" setting, so a deployment
|
|
# can supply it without anyone opening the page. You can equally set it under
|
|
# General on the Configuration page, and that wins over this value.
|
|
#
|
|
# But one of the two MUST be set. It is sent 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 guidance is that it identifies whoever is RUNNING the software. The Data
|
|
# page refuses to fetch anything at all until it has one, because unset it would
|
|
# be somebody else answering for your traffic.
|
|
EVE_ASSISTANT_CONTACT_EMAIL=
|