.env.dist 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  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="localhost"
  9. DATABASE_PORT="3306"
  10. DATABASE_NAME="master"
  11. DATABASE_USER="root"
  12. DATABASE_PASSWORD="root"
  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=0
  28. APP_ENCRYPT_METHOD=bcrypt
  29. APP_LOCALE=en
  30. APP_URL_APPEND=''
  31. APP_MULTIPLE_ACCESS_URL=''
  32. ###< chamilo ###