-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.sample
57 lines (45 loc) · 2.29 KB
/
.env.sample
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
APP_ENV=dev
APP_SECRET=4821ac1887ce55493bf79b64ef17c412
DATABASE_URL="mysql://openroaming:openroaming@mysql:3306/openroaming?serverVersion=8&charset=utf8mb4"
DATABASE_FREERADIUS_URL="mysql://admin:[email protected]:3306/radius?serverVersion=8&charset=utf8mb4"
MESSENGER_TRANSPORT_DSN=doctrine://default?auto_setup=0
MAILER_DSN=smtp://mailcatcher:1025
SENDER_NAME="Provider Support"
# SAML Specific Settings
SAML_IDP_ENTITY_ID=http://localhost/saml/metadata
SAML_IDP_SSO_URL=https://id.example.com/saml2/idp/SSOService.php
SAML_IDP_X509_CERT=MIIC...
SAML_SP_ENTITY_ID=https://localhost/saml/metadata
SAML_SP_ACS_URL=https://localhost/saml/acs
# LoadBalancing
TRUSTED_PROXIES=192.0.0.1,10.0.0.0/8
SENTRY_DSN=
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
# Budget SMS API URL
BUDGETSMS_API_URL=
# Enable Export Operation from the admin page
EXPORT_USERS=OFF
# Enable Export Operation from the admin page
EXPORT_FREERADIUS_STATISTICS=OFF
###> pixelopen/cloudflare-turnstile-bundle ###
TURNSTILE_KEY=
TURNSTILE_SECRET=
### For testing purposes with cloud flare, please use this link https://developers.cloudflare.com/turnstile/troubleshooting/testing/
###< pixelopen/cloudflare-turnstile-bundle ###
### For delete action on the admin page
### This is the public key PGP (Pretty Good Privacy Key), please make sure to set a valid pgp to encrypt the user data on the delete action
### File Located in "public/resources/public_pgp_key/public_key.asc"
ENABLE_DELETE_USERS_UI=OFF
###> nelmio/cors-bundle ###
CORS_ALLOW_ORIGIN='^https?://(localhost|127\.0\.0\.1)(:[0-9]+)?$' # This is required to let the project know which domain is able to use the API.
# For example, this configuration specifies that only when the project is being run on the URL (127.0.0.1 || localhost), it will return data from the endpoint paths, such as the Swagger UI interface.
###< nelmio/cors-bundle ###
###> lexik/jwt-authentication-bundle ###
### required for API logic with authentication keys
## To generate keys run this command: php bin/console lexik:jwt:generate-keypair
JWT_SECRET_KEY=%kernel.project_dir%/config/jwt/private.pem
JWT_PUBLIC_KEY=%kernel.project_dir%/config/jwt/public.pem
JWT_PASSPHRASE= # Update this to an actual passphrase from keypair generator command on top
###< lexik/jwt-authentication-bundle ###