Jeroen De Meerleer
8af61f97b0
The update includes the addition of a new '/config' endpoint in index.php, which returns the application's configuration as a JSON response. A corresponding link to this new endpoint has also been added to the 404 error page.
14 lines
342 B
Twig
14 lines
342 B
Twig
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<meta charset="UTF-8">
|
|
<title>Page Title</title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<style>
|
|
</style>
|
|
<body>
|
|
<h1>404 Uri {{ path }} not found</h1>
|
|
<p><a href="/metrics">/metrics</a></p>
|
|
<p><a href="/config">/config</a></p>
|
|
<p><a href="/version">/version</a></p>
|
|
</body>
|
|
</html> |