mirror of
https://github.com/minio/minio.git
synced 2025-11-07 12:52:58 -05:00
Fix regexp matcher of browser assets and paths (#7083)
Fix regexp matcher for special assets for the browser to clash with less of the object namespace. Assets should now be loaded with the /minio/ prefix. Previously, favicon.ico (and others) could be loaded at any path matching /minio/*/favicon.ico. This clashes with a large part of the object namespace. With this change, /minio/favicon.ico will serve the favicon but not /minio/mybucket/favicon.ico Fixes #7077
This commit is contained in:
committed by
kannappanr
parent
8c1b649b2d
commit
042d7f25e4
@@ -5,13 +5,13 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Minio Browser</title>
|
||||
<link rel="stylesheet" href="loader.css" type="text/css">
|
||||
<link rel="stylesheet" href="/minio/loader.css" type="text/css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="page-load">
|
||||
<div class="pl-inner">
|
||||
<img src="logo.svg" alt="">
|
||||
<img src="/minio/logo.svg" alt="">
|
||||
</div>
|
||||
</div>
|
||||
<div id="root"></div>
|
||||
@@ -51,6 +51,6 @@
|
||||
<![endif]-->
|
||||
|
||||
<script>currentUiVersion = 'MINIO_UI_VERSION'</script>
|
||||
<script src="index_bundle.js"></script>
|
||||
<script src="/minio/index_bundle.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user