Skip to content

Commit 7343f6f

Browse files
Microzuul CIGerrit Code Review
authored andcommitted
Merge "logjuicer - ensure the trailing '/' in the url"
2 parents c50bd2e + 6b4c410 commit 7343f6f

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

controllers/static/gateway/gateway.conf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ RewriteEngine On
77
RewriteCond %{REQUEST_URI} ^/codesearch$
88
RewriteRule ^(.*)$ $1/ [L,R=301]
99

10+
# Logjuicer requires the trailing '/'
11+
RewriteCond %{REQUEST_URI} ^/logjuicer$
12+
RewriteRule ^(.*)$ $1/ [L,R=301]
1013

1114
<IfModule mod_proxy.c>
1215
ProxyVia On

doc/reference/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,15 @@ All notable changes to this project will be documented in this file.
66

77
### Added
88
### Changed
9+
10+
- logjuicer service is based on a ubi9 base image
11+
912
### Deprecated
1013
### Removed
1114
### Fixed
1215

16+
- Ensure the trailing '/' when accessing https://<domain>/logjuicer. The web app was failing without the trailing slash.
17+
1318
## [v0.0.57] - 2025-04-24
1419

1520
### Added

0 commit comments

Comments
 (0)