File tree Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ CACHE_DRIVER=file
11
11
SESSION_DRIVER = file
12
12
QUEUE_DRIVER = sync
13
13
14
+ REDIS_HOST = localhost
15
+ REDIS_PASSWORD = null
16
+ REDIS_PORT = 6379
17
+
14
18
MAIL_DRIVER = smtp
15
19
MAIL_HOST = mailtrap.io
16
20
MAIL_PORT = 2525
Original file line number Diff line number Diff line change 116
116
'cluster ' => false ,
117
117
118
118
'default ' => [
119
- 'host ' => env ('REDIS_HOST ' , '127.0.0.1 ' ),
119
+ 'host ' => env ('REDIS_HOST ' , 'localhost ' ),
120
+ 'password ' => env ('REDIS_PASSWORD ' , '' ),
120
121
'port ' => env ('REDIS_PORT ' , 6379 ),
121
- 'database ' => env ( ' REDIS_DB ' , 0 ) ,
122
+ 'database ' => 0 ,
122
123
],
123
124
124
125
],
Original file line number Diff line number Diff line change
1
+ <configuration>
2
+ <system.webServer>
3
+ <rewrite>
4
+ <rules>
5
+ <rule name="Imported Rule 1" stopProcessing="true">
6
+ <match url="^(.*)/$" ignoreCase="false" />
7
+ <conditions>
8
+ <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
9
+ </conditions>
10
+ <action type="Redirect" redirectType="Permanent" url="/{R:1}" />
11
+ </rule>
12
+ <rule name="Imported Rule 2" stopProcessing="true">
13
+ <match url="^" ignoreCase="false" />
14
+ <conditions>
15
+ <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
16
+ <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
17
+ </conditions>
18
+ <action type="Rewrite" url="index.php" />
19
+ </rule>
20
+ </rules>
21
+ </rewrite>
22
+ </system.webServer>
23
+ </configuration>
You can’t perform that action at this time.
0 commit comments