generated from somnambulist-tech/web-api-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
52 lines (45 loc) · 1.97 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
# 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.
#
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
# This is a prefix added to all containers started via docker-compose up.
# Change it to whatever you want to better control the names of your started
# containers. Or remove it and docker-compose will use the current working
# directory as a project name.
#
# You should avoid including the PHP app container name in this prefix.
COMPOSE_PROJECT_NAME=mycompany_apps
###> symfony/framework-bundle ###
APP_ENV=dev
APP_SECRET=5dc0743397dc344e0f44efa7c0cf2d33
###< symfony/framework-bundle ###
###> symfony/messenger ###
# Choose one of the transports below
MESSENGER_TRANSPORT_DSN=amqp://guest:guest@rabbitmq:5672/%2f
###< symfony/messenger ###
# Docker Compose Vars
# These are used by the various helper scripts to provide pathing and aliasing
APP_PATH=/app
# This is the name of the PHP container and is used by SyncIt and the helper scripts.
# It needs to match the name of the container in the docker-compose file, but must be
# unique enough for SyncIt to find the container when querying.
APP_SERVICE_APP=app
# App Specific
APP_URL=http://app.example.dev
APP_SERVICE_NAME=app
# Redis Server address used for caching
APP_CACHE_URL="redis://app-cache:6379"
APP_SESSION_URL="redis://app-sessions:6379"
# Syslog Server
SYSLOG_HOST=syslog
SYSLOG_PORT=514