-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.env.dist
34 lines (29 loc) · 1.05 KB
/
app.env.dist
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
# PHP Runtime
PROOPH_ENV=dev
# Storage credentials
PDO_DSN=pgsql:host=postgres port=5432 dbname=identity_mgmt
PDO_USER=postgres
PDO_PWD=
MONGO_SERVER=mongodb://mongodb:27017
MONGO_DB_NAME=identity_mgmt
# Superuser
SU_TENANT_ID=03c8d742-1bed-46d1-a985-080b9a036656
# Password Hash Config
# Set to PASSWORD_DEFAULT by default, use PASSWORD_ARGON2I on PHP 7.2+, see https://framework.zend.com/blog/2017-08-17-php72-argon2-hash-password.html
PWD_HASH_ALGO=1
# Adjust, depending on server power, see Example #4 on http://php.net/manual/en/function.password-hash.php
PWD_HASH_COST=10
# Static pepper added to each pwd, salt is generated by password_hash
PWD_HASH_PEPPER=changeMe
# Base URL
BASE_URL=http://localhost:8080/api
# Swift Mailer
MAIL_FROM=noreply@localhost
MAIL_FROM_NAME=prooph software Identity Mgmt
# Uncomment if you want sent all message to this address (useful in dev env)
MAIL_SMTP_HOST=smtp.gmail.com
MAIL_SMTP_PORT=587
MAIL_SMTP_USERNAME=YOUR_USERNAME_HERE
MAIL_SMTP_PWD=YOUR_PASSWORD_HERE
MAIL_SMTP_SSL=tls