Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. # This file is a "template" of which env vars need to be defined for your application
  2. # Copy this file to .env file for development, create environment variables when deploying to production
  3. # https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
  4.  
  5. ###> symfony/framework-bundle ###
  6. APP_ENV=dev
  7. APP_SECRET=af8a904f57d54c70d506d175ad993a26
  8. #TRUSTED_PROXIES=127.0.0.1,127.0.0.2
  9. #TRUSTED_HOSTS=localhost,example.com
  10. ###< symfony/framework-bundle ###
  11.  
  12. ###> symfony/swiftmailer-bundle ###
  13. # For Gmail as a transport, use: "gmail://username:password@localhost"
  14. # For a generic SMTP server, use: "smtp://localhost:25?encryption=&auth_mode="
  15. # Delivery is disabled by default via "null://localhost"
  16. MAILER_URL=gmail://deluxifymobile:Deluxify*2018@localhost
  17. ###< symfony/swiftmailer-bundle ###
  18.  
  19. ###> doctrine/doctrine-bundle ###
  20. # Format described at http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
  21. # For an SQLite database, use: "sqlite:///%kernel.project_dir%/var/data.db"
  22. # Configure your db driver and server_version in config/packages/doctrine.yaml
  23. DATABASE_URL=mysql://root:toor@127.0.0.1:3306/ubezpieczenia
  24. ###< doctrine/doctrine-bundle ###
  25.  
  26. ###> nelmio/cors-bundle ###
  27. CORS_ALLOW_ORIGIN=*
  28. ###< nelmio/cors-bundle ###
  29.  
  30. ###> lexik/jwt-authentication-bundle ###
  31. # Key paths should be relative to the project directory
  32. JWT_PRIVATE_KEY_PATH=config/jwt/private.pem
  33. JWT_PUBLIC_KEY_PATH=config/jwt/public.pem
  34. JWT_PASSPHRASE=surrogate
  35. ###< lexik/jwt-authentication-bundle ###
  36.  
  37. CHAT_DOMAIN=http://localhost
  38. CHAT_PORT=3000
  39.  
  40. DATABASE_URL_CHAT=mysql://root:toor@127.0.0.1:3306/180c_surrogate_chat
  41.  
  42. DOMAIN_URL=http://127.0.0.1:8000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement