.env.dist 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # This file is a "template" of which env vars needs to be defined in your configuration or in an .env file
  2. # Set variables here that may be different on each deployment target of the app, e.g. development, staging, production.
  3. # https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
  4. ###> doctrine/doctrine-bundle ###
  5. # Format described at http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
  6. # For a sqlite database, use: "sqlite:///%kernel.project_dir%/var/data.db"
  7. # Set "serverVersion" to your server version to avoid edge-case exceptions and extra database calls
  8. DATABASE_HOST="{{DATABASE_HOST}}"
  9. DATABASE_PORT="{{DATABASE_PORT}}"
  10. DATABASE_NAME="{{DATABASE_NAME}}"
  11. DATABASE_USER="{{DATABASE_USER}}"
  12. DATABASE_PASSWORD="{{DATABASE_PASSWORD}}"
  13. ###< doctrine/doctrine-bundle ###
  14. ###> symfony/swiftmailer-bundle ###
  15. MAILER_TRANSPORT='sendmail'
  16. MAILER_USERNAME=''
  17. MAILER_PASSWORD=''
  18. MAILER_HOST=''
  19. MAILER_PORT=''
  20. ###< symfony/swiftmailer-bundle ###
  21. ###> symfony/framework-bundle ###
  22. APP_ENV=dev
  23. APP_DEBUG=1
  24. APP_SECRET=141af65f23c7935a37b504c422f113b0
  25. ###< symfony/framework-bundle ###
  26. ###> chamilo ###
  27. APP_INSTALLED={{APP_INSTALLED}}
  28. ## Encrypt method bcrypt/sha1/md5
  29. APP_ENCRYPT_METHOD={{APP_ENCRYPT_METHOD}}
  30. APP_LOCALE=en
  31. ## Example: '/chamilo2'
  32. APP_URL_APPEND="{{APP_URL_APPEND}}"
  33. APP_MULTIPLE_ACCESS_URL=""
  34. ###< chamilo ###
  35. ###> hwi/oauth-bundle ###
  36. FB_ID=
  37. FB_SECRET=
  38. GITHUB_ID=
  39. GITHUB_SECRET=
  40. GOOGLE_ID=
  41. GOOGLE_SECRET=
  42. ###< hwi/oauth-bundle ###