Files
rustfs-console/server/api/[...].ts
T
junxiang Mu c019276fcb add kms
Signed-off-by: junxiang Mu <1948535941@qq.com>
2025-09-22 14:31:07 +08:00

12 lines
320 B
TypeScript

import { joinURL } from 'ufo';
export default defineEventHandler(async event => {
const proxyUrl = useRuntimeConfig().public.api.baseURL;
const target = joinURL(proxyUrl, event.path.replace('/rustfs', '/rustfs/admin/v3'));
console.log('Proxying request to:', target);
return proxyRequest(event, target);
});