-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.template
68 lines (59 loc) · 2 KB
/
.env.template
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
# ref: https://github.com/shyim/shopware/tree/main
###> shopware/core ###
APP_ENV=dev
APP_SECRET=CHANGEME
APP_URL=http://localhost:8000
BLUE_GREEN_DEPLOYMENT=0
DATABASE_URL=mysql://shopware:shopware@127.0.0.1:3306/shopware
INSTANCE_ID=CHANGEME
# With Shopware 6.4.17.0 the MAILER_DSN variable will be used in this template instead of MAILER_URL
# MAILER_URL=null://null
###< shopware/core ###
###> 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
# doctrine://default?auto_setup=0
###< symfony/messenger ###
###> symfony/mailer ###
MAILER_DSN=smtp://shopware:shopware@127.0.0.1:1025
###< symfony/mailer ###
###> symfony/lock ###
# Choose one of the stores below
# postgresql+advisory://db_user:db_password@localhost/db_name
LOCK_DSN=flock
###< symfony/lock ###
###> shopware/elasticsearch ###
OPENSEARCH_URL=http://127.0.0.1:9200
SHOPWARE_ES_ENABLED=1
SHOPWARE_ES_INDEXING_ENABLED=1
SHOPWARE_ES_INDEX_PREFIX=sw
SHOPWARE_ES_THROW_EXCEPTION=1
###< shopware/elasticsearch ###
###> shopware/storefront ###
SHOPWARE_HTTP_CACHE_ENABLED=0
SHOPWARE_HTTP_DEFAULT_TTL=7200
STOREFRONT_PROXY_URL=http://localhost:8000
###< shopware/storefront ###
###> shopware/opentelemetry ###
OTEL_EXPORTER_OTLP_ENDPOINT=http://127.0.0.1:4317
OTEL_EXPORTER_OTLP_PROTOCOL=grpc
OTEL_LOGS_EXPORTER=otlp
OTEL_METRICS_EXPORTER=otlp
OTEL_PHP_AUTOLOAD_ENABLED=false
OTEL_PHP_DISABLED_INSTRUMENTATIONS=shopware
OTEL_SERVICE_NAME=shopware
OTEL_TRACES_EXPORTER=otlp
###< shopware/opentelemetry ###
###> fmjstudios/shopware ###
# (custom) S3 configuration
SHOPWARE_S3_ACCESS_KEY=CHANGEME
SHOPWARE_S3_SECRET_KEY=CHANGEME
SHOPWARE_S3_BUCKET=shop-cdn-fmjstudios
SHOPWARE_S3_REGION=eu-north-1
SHOPWARE_S3_CDN_URL="https://shop.cdn.fmj.services"
SHOPWARE_S3_ENDPOINT="https://s3.eu-north-1.amazonaws.com"
SHOPWARE_S3_USE_PATH_ENDPOINT="false"
# (custom) Redis config
SHOPWARE_REDIS_URL="redis://127.0.0.1:6379"
###> fmjstudios/shopware ###