Skip to content

Commit

Permalink
chore: uses reverse proxy, do not hard-coded subdomain
Browse files Browse the repository at this point in the history
  • Loading branch information
DPS0340 committed Dec 12, 2022
1 parent 95c72e3 commit 6a24ec8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pages/logging/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useEffect } from 'react';

export const Logging = () => {
useEffect(() => {
window.location.replace('https://kibana.so1s.io');
window.location.replace('kibana/');
}, []);

return <></>;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/monitoring/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useEffect } from 'react';

export const Monitoring = () => {
useEffect(() => {
window.location.replace('https://dashboard.so1s.io');
window.location.replace('/dashboard');
}, []);

return <></>;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/tracing/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useEffect } from 'react';

export const Tracing = () => {
useEffect(() => {
window.location.replace('https://kiali.so1s.io');
window.location.replace('kiali/');
}, []);

return <></>;
Expand Down

0 comments on commit 6a24ec8

Please sign in to comment.