.env.dist 1.3 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="{{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. APP_ENCRYPT_METHOD={{APP_ENCRYPT_METHOD}}
  29. APP_LOCALE=en
  30. APP_URL_APPEND=''
  31. APP_MULTIPLE_ACCESS_URL=''
  32. ###< chamilo ###