Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. # The environment Craft is currently running in ('dev', 'staging', 'production', etc.)
  2. ENVIRONMENT="dev"
  3.  
  4. # The secure key Craft will use for hashing and encrypting data
  5. SECURITY_KEY="06yzZI_QKhL_FvLSXZSxXL6WriFd5OdN"
  6.  
  7. # The database driver that will be used ('mysql' or 'pgsql')
  8. DB_DRIVER="mysql"
  9.  
  10. # The database server name or IP address (usually this is 'localhost' or '127.0.0.1')
  11. DB_SERVER="localhost"
  12.  
  13. # The database username to connect with
  14. DB_USER="app"
  15.  
  16. # The database password to connect with
  17. DB_PASSWORD="app"
  18.  
  19. # The name of the database to select
  20. DB_DATABASE="abnamrotoday_craft"
  21.  
  22. # The database schema that will be used (PostgreSQL only)
  23. DB_SCHEMA="public"
  24.  
  25. # The prefix that should be added to generated table names (only necessary if multiple things are sharing the same database)
  26. DB_TABLE_PREFIX=""
  27.  
  28. # The port to connect to the database with. Will default to 5432 for PostgreSQL and 3306 for MySQL.
  29. DB_PORT=""
  30.  
  31. # Web directory - @web
  32. BASE_PATH="/public_html/"
  33.  
  34. # Base url - @baseUrl
  35. BASE_URL="http://today2.dev.liftov.be"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement