source: config/database.php

Last change on this file was c5e383e, checked in by beratkjufliju <kufliju@…>, 3 years ago

added db and storage backup

  • Property mode set to 100644
File size: 5.1 KB
Line 
1<?php
2
3use Illuminate\Support\Str;
4
5return [
6
7 /*
8 |--------------------------------------------------------------------------
9 | Default Database Connection Name
10 |--------------------------------------------------------------------------
11 |
12 | Here you may specify which of the database connections below you wish
13 | to use as your default connection for all database work. Of course
14 | you may use many connections at once using the Database library.
15 |
16 */
17
18 'default' => env('DB_CONNECTION', 'mysql'),
19
20 /*
21 |--------------------------------------------------------------------------
22 | Database Connections
23 |--------------------------------------------------------------------------
24 |
25 | Here are each of the database connections setup for your application.
26 | Of course, examples of configuring each database platform that is
27 | supported by Laravel is shown below to make development simple.
28 |
29 |
30 | All database work in Laravel is done through the PHP PDO facilities
31 | so make sure you have the driver for your particular database of
32 | choice installed on your machine before you begin development.
33 |
34 */
35
36 'connections' => [
37
38 'sqlite' => [
39 'driver' => 'sqlite',
40 'url' => env('DATABASE_URL'),
41 'database' => env('DB_DATABASE', database_path('database.sqlite')),
42 'prefix' => '',
43 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
44 ],
45
46 'mysql' => [
47 'driver' => 'mysql',
48 'url' => env('DATABASE_URL'),
49 'host' => env('DB_HOST', '127.0.0.1'),
50 'port' => env('DB_PORT', '3306'),
51 'database' => env('DB_DATABASE', 'forge'),
52 'username' => env('DB_USERNAME', 'forge'),
53 'password' => env('DB_PASSWORD', ''),
54 'unix_socket' => env('DB_SOCKET', ''),
55 //'charset' => 'utf8mb4',
56 //'collation' => 'utf8mb4_unicode_ci',
57 'charset' => 'utf8',
58 'collation' => 'utf8_unicode_ci',
59 'prefix' => '',
60 'prefix_indexes' => true,
61 'strict' => true,
62 'engine' => null,
63 'dump' => [
64 'dump_binary_path' => 'C:/laragon/bin/mysql/mysql-5.7.33-winx64/bin/',
65 ],
66 'options' => extension_loaded('pdo_mysql') ? array_filter([
67 PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
68 ]) : [],
69 ],
70
71 'pgsql' => [
72 'driver' => 'pgsql',
73 'url' => env('DATABASE_URL'),
74 'host' => env('DB_HOST', '127.0.0.1'),
75 'port' => env('DB_PORT', '5432'),
76 'database' => env('DB_DATABASE', 'forge'),
77 'username' => env('DB_USERNAME', 'forge'),
78 'password' => env('DB_PASSWORD', ''),
79 'charset' => 'utf8',
80 'prefix' => '',
81 'prefix_indexes' => true,
82 'schema' => 'public',
83 'sslmode' => 'prefer',
84 ],
85
86 'sqlsrv' => [
87 'driver' => 'sqlsrv',
88 'url' => env('DATABASE_URL'),
89 'host' => env('DB_HOST', 'localhost'),
90 'port' => env('DB_PORT', '1433'),
91 'database' => env('DB_DATABASE', 'forge'),
92 'username' => env('DB_USERNAME', 'forge'),
93 'password' => env('DB_PASSWORD', ''),
94 'charset' => 'utf8',
95 'prefix' => '',
96 'prefix_indexes' => true,
97 ],
98
99 ],
100
101 /*
102 |--------------------------------------------------------------------------
103 | Migration Repository Table
104 |--------------------------------------------------------------------------
105 |
106 | This table keeps track of all the migrations that have already run for
107 | your application. Using this information, we can determine which of
108 | the migrations on disk haven't actually been run in the database.
109 |
110 */
111
112 'migrations' => 'migrations',
113
114 /*
115 |--------------------------------------------------------------------------
116 | Redis Databases
117 |--------------------------------------------------------------------------
118 |
119 | Redis is an open source, fast, and advanced key-value store that also
120 | provides a richer body of commands than a typical key-value system
121 | such as APC or Memcached. Laravel makes it easy to dig right in.
122 |
123 */
124
125 'redis' => [
126
127 'client' => env('REDIS_CLIENT', 'phpredis'),
128
129 'options' => [
130 'cluster' => env('REDIS_CLUSTER', 'redis'),
131 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),
132 ],
133
134 'default' => [
135 'url' => env('REDIS_URL'),
136 'host' => env('REDIS_HOST', '127.0.0.1'),
137 'password' => env('REDIS_PASSWORD', null),
138 'port' => env('REDIS_PORT', '6379'),
139 'database' => env('REDIS_DB', '0'),
140 ],
141
142 'cache' => [
143 'url' => env('REDIS_URL'),
144 'host' => env('REDIS_HOST', '127.0.0.1'),
145 'password' => env('REDIS_PASSWORD', null),
146 'port' => env('REDIS_PORT', '6379'),
147 'database' => env('REDIS_CACHE_DB', '1'),
148 ],
149
150 ],
151
152];
Note: See TracBrowser for help on using the repository browser.