-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.php
More file actions
41 lines (32 loc) · 1.04 KB
/
config.php
File metadata and controls
41 lines (32 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
declare(strict_types=1);
return [
/*
|--------------------------------------------------------------------------
| Use preferred locale from request
|--------------------------------------------------------------------------
|
| Use the preferred locale which is sent by the client.
|
*/
'use_preferred_locale' => false,
/*
|--------------------------------------------------------------------------
| HTTP status code
|--------------------------------------------------------------------------
|
| Configure a HTTP status code to use for maintenance page HTTP responses.
|
*/
'http_status_code' => 503,
/*
|--------------------------------------------------------------------------
| HTTP status code for AJAX requests
|--------------------------------------------------------------------------
|
| Configure a HTTP status code to use for maintenance page HTTP responses
| via AJAX requests.
|
*/
'http_status_code_ajax' => 503,
];