docker-compose environment for the entire v.st system
https://v.st/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.1 KiB
30 lines
1.1 KiB
# Fill in with your top-level domain name and desired OAUTH realm name
|
|
DOMAIN_NAME=v.st
|
|
REALM=voidstar
|
|
|
|
# Fill in with your SMTP server, if you have one
|
|
SMTP_SERVER=
|
|
SMTP_USER=
|
|
SMTP_PASSWORD=
|
|
SMTP_PORT=
|
|
|
|
# You can leave these as is or change them if you like
|
|
NGINX_HOSTNAME=www
|
|
KEYCLOAK_HOSTNAME=login
|
|
HEDGEDOC_HOSTNAME=docs
|
|
MASTODON_HOSTNAME=social
|
|
NEXTCLOUD_HOSTNAME=cloud
|
|
GRAFANA_HOSTNAME=dashboard
|
|
GITEA_HOSTNAME=git
|
|
MATRIX_HOSTNAME=matrix
|
|
MOBILIZON_HOSTNAME=events
|
|
PIXELFED_HOSTNAME=pixelfed
|
|
PROMETHEUS_HOSTNAME=metrics
|
|
NITTER_HOSTNAME=nitter
|
|
BOOKWYRM_HOSTNAME=books
|
|
|
|
KEYCLOAK_BASE_URL=https://${KEYCLOAK_HOSTNAME}.${DOMAIN_NAME}/realms/${REALM}/protocol/openid-connect
|
|
AUTH_URL=https://${KEYCLOAK_HOSTNAME}.${DOMAIN_NAME}/realms/${REALM}/protocol/openid-connect/auth
|
|
TOKEN_URL=https://${KEYCLOAK_HOSTNAME}.${DOMAIN_NAME}/realms/${REALM}/protocol/openid-connect/token
|
|
USERINFO_URL=https://${KEYCLOAK_HOSTNAME}.${DOMAIN_NAME}/realms/${REALM}/protocol/openid-connect/userinfo
|
|
LOGOUT_URL=https://${KEYCLOAK_HOSTNAME}.${DOMAIN_NAME}/realms/${REALM}/protocol/openid-connect/logout
|
|
|