DGCP3
DGCP3
Explore posts from servers
TTCTheo's Typesafe Cult
Created by DGCP3 on 3/18/2025 in #questions
Minio not working with caddy proxy
I'm using Caddy to proxy my backend and serve a React Vite app build file and other proxies.
handle_path /storage/* {
reverse_proxy minio:9003
}

handle {
root * /usr/share/caddy
try_files {path} /index.html
file_server
}
handle_path /storage/* {
reverse_proxy minio:9003
}

handle {
root * /usr/share/caddy
try_files {path} /index.html
file_server
}
client
export const bucket = new Client({
endPoint: "localhost",
pathStyle: false,
port: 9003,
useSSL: true,
accessKey: "xxx",
secretKey: "xxx",
});
export const bucket = new Client({
endPoint: "localhost",
pathStyle: false,
port: 9003,
useSSL: true,
accessKey: "xxx",
secretKey: "xxx",
});
docker compose file
minio:
container_name: minio
image: minio/minio
ports:
- "9003:9003"
- "9001:9001"
command: server --console-address ":9001" --address ":9003" /data
env_file:
- ./.env
volumes:
- ./volume/minio:/data
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
interval: 30s
timeout: 5s
retries: 3
minio:
container_name: minio
image: minio/minio
ports:
- "9003:9003"
- "9001:9001"
command: server --console-address ":9001" --address ":9003" /data
env_file:
- ./.env
volumes:
- ./volume/minio:/data
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
interval: 30s
timeout: 5s
retries: 3
url generator function
const presignedUrl = await c.var.bucket
.presignedGetObject(bucketName,fileName,60 * 5)
.then((url)=>url.replace(`http://${env.MINIO_ENDPOINT}:${env.MINIO_PORT}`,"/storage")
);
const presignedUrl = await c.var.bucket
.presignedGetObject(bucketName,fileName,60 * 5)
.then((url)=>url.replace(`http://${env.MINIO_ENDPOINT}:${env.MINIO_PORT}`,"/storage")
);
when I try to use the URL generated by generator function it shows signitureDoesNotMatch error
2 replies
TTCTheo's Typesafe Cult
Created by DGCP3 on 9/26/2024 in #questions
How to add swagger to hono api
I want to add a swagger doc to my API and when I add middleware to any new OpenAPIHono instance the ".openapi" method disappears.
/**
* Creates a base instance of Hono with middleware.
* @returns {Hono} The base instance of Hono.
*/
const base = () => new OpenAPIHono().use(databaseMiddleware).use(bucketMiddleware).use(cacheMiddleware);

/**
* Represents a public route.
* @returns {Hono}
*/
export const publicHonoRoute = () => base(); // public route

/**
* Marks a route as protected.
* @returns {Hono}
*/
export const protectedHonoRoute = () => base().use(protect).use(typesenseMiddleware); // protected route
/**
* Creates a base instance of Hono with middleware.
* @returns {Hono} The base instance of Hono.
*/
const base = () => new OpenAPIHono().use(databaseMiddleware).use(bucketMiddleware).use(cacheMiddleware);

/**
* Represents a public route.
* @returns {Hono}
*/
export const publicHonoRoute = () => base(); // public route

/**
* Marks a route as protected.
* @returns {Hono}
*/
export const protectedHonoRoute = () => base().use(protect).use(typesenseMiddleware); // protected route
this is my factory method. the instance returned doesn't have ".openapi' on it so I can pass my schema returned by createRoute().
20 replies
HHono
Created by DGCP3 on 9/26/2024 in #help
Adding swagger to hono API
I want to add a swagger doc to my API and when I add middleware to any new OpenAPIHono instance the .openapi method disappears.
/**
* Creates a base instance of Hono with middleware.
* @returns {Hono} The base instance of Hono.
*/
const base = () => new OpenAPIHono().use(databaseMiddleware).use(bucketMiddleware).use(cacheMiddleware);

/**
* Represents a public route.
* @returns {Hono}
*/
export const publicHonoRoute = () => base(); // public route

/**
* Marks a route as protected.
* @returns {Hono}
*/
export const protectedHonoRoute = () => base().use(protect).use(typesenseMiddleware); // protected route
/**
* Creates a base instance of Hono with middleware.
* @returns {Hono} The base instance of Hono.
*/
const base = () => new OpenAPIHono().use(databaseMiddleware).use(bucketMiddleware).use(cacheMiddleware);

/**
* Represents a public route.
* @returns {Hono}
*/
export const publicHonoRoute = () => base(); // public route

/**
* Marks a route as protected.
* @returns {Hono}
*/
export const protectedHonoRoute = () => base().use(protect).use(typesenseMiddleware); // protected route
this is my factory method. the instance returned doesn't have .openapi, so I can pass my schema returned by createRoute().
4 replies
PPrisma
Created by DGCP3 on 7/26/2024 in #help-and-questions
Prisma optimize showing error page
No description
14 replies
TTCTheo's Typesafe Cult
Created by DGCP3 on 7/24/2024 in #questions
how to make c.get("jwtPayload") type safe in hono
how to add type to jwt payload in hono js
20 replies
TTCTheo's Typesafe Cult
Created by DGCP3 on 2/8/2024 in #questions
i need help on type
No description
35 replies