-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env
More file actions
65 lines (56 loc) · 2.69 KB
/
.env
File metadata and controls
65 lines (56 loc) · 2.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
COMPOSE_PROJECT_NAME=itksites
COMPOSE_DOMAIN=itksites.local.itkdev.dk
ITKDEV_TEMPLATE=symfony-8
# In all environments, the following files are loaded if they exist,
# the latter taking precedence over the former:
#
# * .env contains default values for the environment variables needed by the app
# * .env.local uncommitted file with local overrides
# * .env.$APP_ENV committed environment-specific defaults
# * .env.$APP_ENV.local uncommitted environment-specific overrides
#
# Real environment variables win over .env files.
#
# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
# https://symfony.com/doc/current/configuration/secrets.html
#
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
###> symfony/framework-bundle ###
APP_ENV=dev
APP_SECRET=8dbdc8f75839b7749bb31ef49d3e565e
TRUSTED_PROXIES=127.0.0.1,REMOTE_ADDR
DEFAULT_URI='https://itksites.local.itkdev.dk/'
###< symfony/framework-bundle ###
###> doctrine/doctrine-bundle ###
# Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
#
# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"
DATABASE_URL="mysql://root:password@mariadb:3306/db?serverVersion=10.11.9-MariaDB"
###< doctrine/doctrine-bundle ###
###> nelmio/cors-bundle ###
CORS_ALLOW_ORIGIN='^https?://(localhost|127\.0\.0\.1)(:[0-9]+)?$'
###< nelmio/cors-bundle ###
###> symfony/messenger ###
# Choose one of the transports below
# MESSENGER_TRANSPORT_DSN=amqp://guest:guest@localhost:5672/%2f/messages
# MESSENGER_TRANSPORT_DSN=redis://localhost:6379/messages
MESSENGER_TRANSPORT_DSN='amqp://user:password@rabbit:5672/%2f/messages'
MESSENGER_TRANSPORT_DSN_FAILED='doctrine://default?queue_name=failed'
###< symfony/messenger ###
###> itk-dev/openid-connect-bundle ###
# "admin" open id connect configuration variables (values provided by the OIDC IdP)
AZURE_AZ_OIDC_METADATA_URL=AZURE_AZ_APP_METADATA_URL
AZURE_AZ_OIDC_CLIENT_ID=AZURE_AZ_APP_CLIENT_ID
AZURE_AZ_OIDC_CLIENT_SECRET=AZURE_AZ_APP_CLIENT_SECRET
AZURE_AZ_OIDC_REDIRECT_URI=AZURE_AZ_APP_REDIRECT_URI
AZURE_AZ_OIDC_ALLOW_HTTP=false
AZURE_AZ_OIDC_LEEWAY=10
OIDC_CLI_LOGIN_ROUTE=OIDC_CLI_LOGIN_ROUTE_TEST
###< itk-dev/openid-connect-bundle ###
VAULT_URL=https://vault.itkdev.dk
VAULT_ROLE_ID="CHANGE_ME_IN_LOCAL_ENV"
VAULT_SECRET_ID="CHANGE_ME_IN_LOCAL_ENV"
# The number of old results for each server/result-type combination
APP_KEEP_RESULTS=5