Object storage custom domain
Is there any possible way to change the default domain of the object storage url ?
32 Replies
Hi @Louay , I think you could make a simple static/nginx service that will proxy the objectstorage. It will then be possible to use any custom domain. I'll try to look into it. Give me a minute.
Alright thanks
please i got another problem
the dns is pointing to the ipv6 adress https://www.nslookup.io/domains/testapi.soon.it/dns-records/

Looks ok to me, maybe DNS hasn't propagated locally on your machine yet?

maybe
If you visited the site locally, the domain has an hour TTL, so it may take a while.
even in all devices?
cus ive already tried in my mobilee same thing
try this:
im using windows

Did you set the A record correctly? If you only set AAAA and do not have IPv6 capable network, you will not be able to connect to it.
so i need an a record also?
ig i do not have an ipv6 capable network
anyways does this costs?
UI should say that you either need to use something like CloudFlare with only AAAA record and enable CF Proxy, or you need to set up AAAA and A records.
For A record, you can use either our shared IPv4, which is free, or purchase a dedicated IPv4.
aha so with cloudfare proxy ipv6 is enough?
alright got it thnx alot
?
Simple nginx proxy with minmal resources approximately $0.7/month ?
You can also add this proxy to another container where nginx is.
aha wish that was natively you can change to custom domains
because im planning for a production enviormenet
we are exploring options for our product
We are working on a integrated CDN function where this will be possible.
Wish to hear about that soon
We already have a functional infrastructure and are working on the integration into the platform.
Yea our launch is maybe in the next 4 or 5 months
so hope by that time
I hope we will be able to make this available as soon as possible.
its integrated
Wish you good luck
Otherwise it is possible to use image proxy to access images on objectstorage. It has many more functions like image manipulation. But it is more complex to integrate into the application.
We have an experimental recipe for this:
https://github.com/zeropsio/recipe-imgproxy/
https://github.com/imgproxy/imgproxy
This is a simple proxy that will redirect (301) to the content in the
teststorage
objectstorage. 👆alrigght ill take a look
please this is my Dockerfile for bun + hono
Build stage
FROM oven/bun:1 AS builder
WORKDIR /app
# Copy package files first for better caching
COPY package.json bun.lockb ./
RUN bun install --frozen-lockfile
# Copy rest of the files
COPY . ./
# Build the binary
RUN bun build main.ts --compile --outfile server
# Final stage
FROM debian:bookworm-slim
WORKDIR /app
# Copy only the compiled binary
COPY --from=builder /app/server ./server
# Run the binary
CMD ["./server"]
how can i make a compatible zerops yamlThe basic
zerops.yml
could look like this:
1. create service bun
2. create zerops.yml
with: (change port if needed)
3. run zcli push
[BUILD ERROR] target './app/server' specified in deployFiles field is missing
2025-03-14T10:03:48.100Z [BUILD ERROR] measuring application size failed
Files/folders listed in build.deployFiles do not exist.
{
"files": [
"./app/server"
]
}
yeah only one file,
/app/server
is source file
it worked man thnx alot !!