-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
125 lines (97 loc) · 4.11 KB
/
.env
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# -----------------------------------------------------
# Environment setting (dev, prod)
# -----------------------------------------------------
###> symfony/framework-bundle ###
APP_ENV=dev
###< symfony/framework-bundle ###
APP_DEBUG=true
# -----------------------------------------------------
# Application configuration
# -----------------------------------------------------
# Unique secret for creating signatures (remember me, CSRF etc)
APP_SECRET=32f3c49be690d4c5f499093ae7dd3a7d
# Database at-rest encryption key (generated with "php bin/console generate:database-key")
DATABASE_ENCRYPTION_KEY=
# The name of the site. Used only for displaying purposes.
SITE_NAME=open.minvws.nl
# -----------------------------------------------------
# External service configuration
# -----------------------------------------------------
###> 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://app:[email protected]:3306/app?serverVersion=8.0.32&charset=utf8mb4"
# DATABASE_URL="mysql://app:[email protected]:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4"
DATABASE_URL="postgresql://app:[email protected]:5432/app?serverVersion=14&charset=utf8"
###< doctrine/doctrine-bundle ###
# Message bus transport method
HIGH_TRANSPORT_DSN=amqp://guest:guest@localhost:5672/%2f/high
INGESTOR_TRANSPORT_DSN=amqp://guest:guest@localhost:5672/%2f/ingestor
ESUPDATER_TRANSPORT_DSN=amqp://guest:guest@localhost:5672/%2f/es_updates
GLOBAL_TRANSPORT_DSN=amqp://guest:guest@localhost:5672/%2f/global
# Url to the RabbitMQ management interface for statistics
RABBITMQ_STATS_URL=http://guest:[email protected]:15672
# External mailer
# MAILER_DSN=null://null
# Host of the Elasticsearch server
ELASTICSEARCH_HOST=http://127.0.0.1:9200
ELASTICSEARCH_USER=
ELASTICSEARCH_PASS=
ELASTICSEARCH_MTLS_CERT_PATH=
ELASTICSEARCH_MTLS_KEY_PATH=
ELASTICSEARCH_MTLS_CA_PATH=
# Host of the Tika text extraction service
TIKA_HOST=http://127.0.0.1:9998
# Redis instance that is used for document content caching
REDIS_URL=redis://localhost:6379
REDIS_TLS_CAFILE=
REDIS_TLS_LOCAL_CERT=
REDIS_TLS_LOCAL_PK=
# The name of cookie. Should start with __Host- , but cannot be prefixed
# with __Host- when running on non-TLS connections
COOKIE_NAME=WOOPID
# Issuer of the TOTP tokens, used in 2fa for the totp URI
TOTP_ISSUER=localhost
# Application mode. Could be only for balie (backend), frontend, or both
APP_MODE=BOTH
# Base URL of the application frontend (which could different from backend when APP_MODE is not BOTH)
PUBLIC_BASE_URL=http://localhost:8000
# -----------------------------------------------------
# Storage adapter to use
# Choose between aws or local
STORAGE_DOCUMENT_ADAPTER=local
STORAGE_THUMBNAIL_ADAPTER=local
STORAGE_BATCH_ADAPTER=local
# Storage adapter configuration for AWS S3/Minio
STORAGE_MINIO_REGION=eu-west-1
STORAGE_MINIO_ENDPOINT=
STORAGE_MINIO_ACCESS_KEY=
STORAGE_MINIO_SECRET_KEY=
# Bucket definitions for AWS S3/Minio
STORAGE_MINIO_DOCUMENT_BUCKET=doc_bucket
STORAGE_MINIO_THUMBNAIL_BUCKET=thumb_bucket
STORAGE_MINIO_BATCH_BUCKET=batch_bucket
# -----------------------------------------------------
# Identification number for Piwik analytics
PIWIK_ANALYTICS_ID=0
###> php-amqplib/rabbitmq-bundle ###
RABBITMQ_URL=amqp://guest:guest@localhost:5672
###< php-amqplib/rabbitmq-bundle ###
#------------------------------------------------------
# audit logger variables
# Generate keys with "php bin/console woopie:auditlog:generate-keys"
AUDITLOG_ENCRYPTION_PUB_KEY=
AUDITLOG_ENCRYPTION_PRIV_KEY=
AUDITLOG_PSR_ENCRYPTED=false
AUDITLOG_PSR_LOG_PII=false
AUDITLOG_DOCTRINE_ENCRYPTED=false
AUDITLOG_DOCTRINE_LOG_PII=false
AUDITLOG_RABBITMQ_ENCRYPTED=false
AUDITLOG_RABBITMQ_LOG_PII=false
AUDITLOG_RABBITMQ_ROUTING_KEY=auditlog
AUDITLOG_FILE_ENCRYPTED=false
AUDITLOG_FILE_LOG_PII=false
AUDITLOG_FILE_PATH=%kernel.logs_dir%/audit.log
HAS_FEATURE_VERWERKINGSREGISTER_LINK=false