File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+ http_response_code (503 );
3
+ header ('Refresh: ' . 60 );
4
+ ?>
5
+
6
+ <!DOCTYPE html>
7
+ <html lang="cs">
8
+ <head class="h-screen">
9
+ <meta charset="UTF-8">
10
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
11
+ <title>Knihovna</title>
12
+ <script src="https://cdn.tailwindcss.com"></script>
13
+ </head>
14
+ <body class="h-screen">
15
+ <div class="w-full h-full flex flex-col items-center justify-center">
16
+ <h1 class="font-mono text-4xl text-center">Právě probíhá údržba webu</h1>
17
+ <p class="text-xl text-center">Prosím, zkuste to později.</p>
18
+ </div>
19
+ </body>
20
+ </html>
Original file line number Diff line number Diff line change 132
132
133
133
// CRON route for some hosting services
134
134
Route::get ('/work ' , function () {
135
- Artisan::call ('queue:work ' , ['--stop-when-empty ' => true ]);
135
+ Artisan::call ('queue:work ' , ['--stop-when-empty ' => true , ' --max-time ' => 60 * 14 ]);
136
136
});
You can’t perform that action at this time.
0 commit comments