Guest User

Untitled

a guest
Apr 17th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. # TYPE DATABASE USER ADDRESS METHOD
  2.  
  3. # "local" is for Unix domain socket connections only
  4. local all all peer
  5. # IPv4 local connections:
  6.  
  7. host all all 0.0.0.0/0 md5
  8. # IPv6 local connections:
  9. #host all all ::1/128 md5
  10. # Allow replication connections from localhost, by a user with the
  11. # replication privilege.
  12. #local replication postgres peer
  13. #host replication postgres 127.0.0.1/32 ident
  14. #host replication postgres ::1/128 ident
  15.  
  16. 'default' => env('DB_CONNECTION', 'pgsql'),
  17.  
  18. 'pgsql' => [
  19. 'driver' => 'pgsql',
  20. 'host' => env('DB_HOST', '127.0.0.1'),
  21. 'port' => env('DB_PORT', '5432'),
  22. 'database' => env('DB_DATABASE', 'forge'),
  23. 'username' => env('DB_USERNAME', 'forge'),
  24. 'password' => env('DB_PASSWORD', ''),
  25. 'charset' => 'utf8',
  26. 'prefix' => '',
  27. 'schema' => 'public',
  28. 'sslmode' => 'prefer',
  29. ],
  30.  
  31. APP_NAME=Control
  32. APP_ENV=local
  33. APP_KEY=mi_key
  34. APP_DEBUG=true
  35. APP_URL=http://mi_ip
  36.  
  37. LOG_CHANNEL=stack
  38.  
  39. DB_CONNECTION=pgsql
  40. DB_HOST=mi_ip
  41. DB_PORT=5432
  42. DB_DATABASE=mi_db
  43. DB_USERNAME=postgres
  44. DB_PASSWORD=mipass
Add Comment
Please, Sign In to add comment