mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
- Run all the migrations in the MySQL database - Add foreign keys + cascade support - Remove the AccountDeleting event (now useless) - Simplify the related code - Keep (for now), the FlexiSIP structure to ensure compatibility - Update the README - Update the test suite
68 lines
No EOL
1.9 KiB
Text
68 lines
No EOL
1.9 KiB
Text
APP_NAME=FlexiAPI
|
|
APP_ENV=local
|
|
APP_KEY=
|
|
APP_DEBUG=false
|
|
APP_URL=http://localhost
|
|
APP_SIP_DOMAIN=sip.example.com
|
|
APP_FLEXISIP_PROXY_PID=/var/run/flexisip-proxy.pid
|
|
APP_FLEXISIP_PUSHER_PATH=
|
|
APP_EVERYONE_IS_ADMIN=false
|
|
|
|
# SIP server parameters
|
|
ACCOUNT_PROXY_REGISTRAR_ADDRESS=sip.example.com # Proxy registrar address, can be different than the SIP domain
|
|
ACCOUNT_TRANSPORT_PROTOCOL_TEXT="TLS (recommended), TCP or UDP" # Simple text, to explain how the SIP server can be reached
|
|
ACCOUNT_REALM=null # Default realm for the accounts, fallback to the domain if not set, enforce null by default
|
|
|
|
# Instance specific parameters
|
|
INSTANCE_COPYRIGHT= # Simple text displayed in the page footer
|
|
INSTANCE_INTRO_REGISTRATION= # Markdown text displayed in the home page
|
|
INSTANCE_CUSTOM_THEME=false
|
|
INSTANCE_CONFIRMED_REGISTRATION_TEXT= # Markdown text displayed when an account is confirmed
|
|
|
|
NEWSLETTER_REGISTRATION_ADDRESS= # Address to contact when a user wants to register to the newsletter
|
|
PHONE_AUTHENTICATION=true # Toggle to enable/disable the SMS support
|
|
DEVICES_MANAGEMENT=false # Toggle to enable/disable the devices management support
|
|
|
|
TERMS_OF_USE_URL= # A URL pointing to the Terms of Use
|
|
PRIVACY_POLICY_URL= # A URL pointing to the Privacy Policy
|
|
|
|
LOG_CHANNEL=stack
|
|
|
|
# External FlexiSIP database
|
|
DB_DRIVER=mysql
|
|
DB_HOST=127.0.0.1
|
|
DB_PORT=3306
|
|
DB_DATABASE=flexisip
|
|
DB_USERNAME=flexisip
|
|
DB_PASSWORD=flexisip
|
|
|
|
# Logs
|
|
BROADCAST_DRIVER=log
|
|
CACHE_DRIVER=file
|
|
QUEUE_CONNECTION=sync
|
|
SESSION_DRIVER=cookie
|
|
SESSION_LIFETIME=120
|
|
|
|
# SMTP and emails
|
|
MAIL_DRIVER=
|
|
MAIL_HOST=
|
|
MAIL_PORT=2525
|
|
MAIL_USERNAME=
|
|
MAIL_PASSWORD=
|
|
MAIL_FROM_ADDRESS=
|
|
MAIL_FROM_NAME=
|
|
MAIL_ALLOW_SELF_SIGNED=false
|
|
MAIL_VERIFY_PEER=true
|
|
MAIL_VERIFY_PEER_NAME=true
|
|
MAIL_SIGNATURE="The Example Team"
|
|
|
|
# OVH SMS API variables
|
|
OVH_APP_KEY=
|
|
OVH_APP_SECRET=
|
|
OVH_APP_ENDPOINT=ovh-eu
|
|
OVH_APP_CONSUMER_KEY=
|
|
OVH_APP_SENDER=
|
|
|
|
# Google reCaptcha v2 parameters
|
|
NOCAPTCHA_SECRET=secret-key
|
|
NOCAPTCHA_SITEKEY=site-key |