Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[4.2.x] fix(console): add nginx server redirect on 404 to / #7062

Merged
merged 1 commit into from Mar 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions gravitee-apim-console-webui/docker/config/default.conf
Expand Up @@ -24,6 +24,7 @@ server {

location / {
try_files $uri $uri/ =404;
error_page 404 /;
root /usr/share/nginx/html;
sub_filter '<base href="/"' '<base href="$CONSOLE_BASE_HREF"';
sub_filter_once on;
Expand Down