.env 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. # In all environments, the following files are loaded if they exist,
  2. # the latter taking precedence over the former:
  3. #
  4. # * .env contains default values for the environment variables needed by the app
  5. # * .env.local uncommitted file with local overrides
  6. # * .env.$APP_ENV committed environment-specific defaults
  7. # * .env.$APP_ENV.local uncommitted environment-specific overrides
  8. #
  9. # Real environment variables win over .env files.
  10. #
  11. # DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
  12. #
  13. # Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
  14. # https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
  15. ###> symfony/framework-bundle ###
  16. APP_SECRET=6a76497c8658bb23e2236f97a2627df3
  17. ###< symfony/framework-bundle ###
  18. ###> files management ###
  19. INTERNAL_FILES_DOWNLOAD_URI=https://api.opentalent.fr/_internal/secure/files
  20. ###< files management ###
  21. ###> doctrine/doctrine-bundle ###
  22. # => defined in the .env.<environment> files
  23. ###< doctrine/doctrine-bundle ###
  24. ###> lexik/jwt-authentication-bundle ###
  25. JWT_SECRET_KEY=%kernel.project_dir%/config/jwt/private.pem
  26. JWT_PUBLIC_KEY=%kernel.project_dir%/config/jwt/public.pem
  27. JWT_PASSPHRASE=opentalent
  28. ###< lexik/jwt-authentication-bundle ###
  29. ###> opentalent config folder ###
  30. OPENTALENT_CONFIG=/config/opentalent
  31. ###< opentalent config folder ###
  32. ###> dolibarr client ###
  33. DOLIBARR_API_BASE_URI=https://prod-erp.2iopenservice.com/api/index.php/
  34. DOLIBARR_API_TOKEN=Bocc4zC0J186v8J6QCqu7DnoIw4I7mCJ
  35. ###< dolibarr client ###
  36. ###> mobyt client ###
  37. MOBYT_API_BASE_URI=https://app.mobyt.fr/API/v1.0/REST/
  38. ###< mobyt client ###
  39. ###> knplabs/knp-snappy-bundle ###
  40. WKHTMLTOPDF_PATH=/usr/local/bin/wkhtmltopdf
  41. WKHTMLTOIMAGE_PATH=/usr/local/bin/wkhtmltoimage
  42. ###< knplabs/knp-snappy-bundle ###
  43. ###> symfony/messenger ###
  44. MESSENGER_TRANSPORT_DSN=doctrine://default
  45. ###< symfony/messenger ###
  46. ###> AdminAssos configuration ###
  47. # => defined in the .env.<environment> files
  48. ###< AdminAssos configuration ###
  49. ###> symfony/lock ###
  50. LOCK_DSN=semaphore
  51. ###< symfony/lock ###
  52. ###> symfony/mailer ###
  53. MAILER_DSN=smtp://localhost
  54. ###< symfony/mailer ###
  55. ###> bindfile populate buffer file
  56. BIND_FILE_BUFFER_FILE=/env/subdomain.txt
  57. ###< bindfile populate buffer file
  58. ###> elasticsearch ###
  59. ELASTICSEARCH_HOST=localhost
  60. ELASTICSEARCH_PORT=9200
  61. ###< elasticsearch ###
  62. ###> symfony/mercure-bundle ###
  63. # See https://symfony.com/doc/current/mercure.html#configuration
  64. # The URL of the Mercure hub, used by the app to publish updates (can be a local URL)
  65. MERCURE_URL=http://mercure/.well-known/mercure
  66. # The public URL of the Mercure hub, used by the browser to connect
  67. MERCURE_PUBLIC_URL=https://local.mercure.opentalent.fr/.well-known/mercure
  68. # The secret key used to sign the JWTs
  69. MERCURE_PUBLISHER_JWT_KEY=NQEupdREijrfYvCmF2mnvZQFL9zLKDH9RCYter6tUWzjemPqzicffhc2fSf0yEmM
  70. ###< symfony/mercure-bundle ###
  71. ###> AdminAssos configuration ###
  72. DATABASE_ADMINASSOS_URL=mysql://root:mysql660@db:3306/adminassos?serverVersion=5.7
  73. ###< AdminAssos configuration ###
  74. ###> Audit configuration ###
  75. DATABASE_AUDIT_URL=mysql://root:mysql660@db:3306/audit?serverVersion=5.7
  76. ###< Audit configuration ###
  77. ###> typo3 client ###
  78. TYPO3_BASE_URI=http://docker.sub.opentalent.fr
  79. ###< typo3 client ###
  80. ###> nelmio/cors-bundle ###
  81. CORS_ALLOW_ORIGIN='^https?://(localhost|127\.0\.0\.1)(:[0-9]+)?$'
  82. ###< nelmio/cors-bundle ###