forked from linuxfrorg/linuxfr.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.env
More file actions
34 lines (28 loc) · 1.12 KB
/
default.env
File metadata and controls
34 lines (28 loc) · 1.12 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
# LinuxFr configuration
DOMAIN=dlfp.lo
# If you want to customize the public HTTP port, do not forget to add it to
# published ports of the `nginx` service into the `compose.yaml` file.
DOMAIN_HTTP_PORT=9000
IMAGE_DOMAIN=image.dlfp.lo
# If you want to customize the image public HTTP port, do not forget to add it to
# published ports of the `nginx` service into the `compose.yaml` file.
IMAGE_DOMAIN_HTTP_PORT=9000
# Redis service is used as a caching service and a publish/subscribe service
# to allow the different LinuxFr tools work together
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_URL=redis://redis:6379/0
# Fixed mysql root user password to be able to run entrypoint
MYSQL_ROOT_PASSWORD=linuxfr_root_pwd
# Developement environment
MYSQL_HOST=database
MYSQL_DATABASE=linuxfr_rails
MYSQL_USER=linuxfr_rails
MYSQL_PASSWORD=linuxfr_rails
# Test environement
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
MYSQL_TEST_DATABASE=linuxfr_test
MYSQL_TEST_USER=linuxfr_test
MYSQL_TEST_PASSWORD=linuxfr_test