Dally
Dally
Explore posts from servers
ZZerops
Created by Dally on 11/17/2024 in #💪・community-support
Origin unreachable
No description
16 replies
ZZerops
Created by Dally on 10/8/2024 in #💪・community-support
Object Storage MinIO login
Is it possibnle to login to the provided MinIO API endpoint (i mean the MinIO web interface)? Also, is there a way to check whats in the bucket in object storage natively within Zerops?
5 replies
ZZerops
Created by Dally on 7/15/2024 in #💪・community-support
Site unreachable
No description
3 replies
ZZerops
Created by Dally on 6/24/2024 in #💪・community-support
Monorepos
How would i go about setting up zerops.yml in a monorepo, which has multiple packages that can be built? I'm using Astro and nodejs server, the frontend lies in apps/frontend dir and I've added all the pnpm commands to the root package.json. Is this the correct way?
zerops:
- setup: daliborhondotdev
# ==== how to build your application ====
build:
# what technologies should the build
# container be based on (can be an array)
base: nodejs@22

# what commands to use to build your app
buildCommands:
- pnpm --filter @daliborhon.dev/frontend install
- pnpm run build:frontend

# select which files / folders to deploy
# after the build succesfully finished
deployFiles:
- apps/frontend/dist
- apps/frontend/package.json
- apps/frontend/node_modules

# *optional*: which files / folders
# to cache for the next build run
# cache:
# - node_modules
# - package-lock.json

# ==== how to run your application ====
run:
# what technologies should the runtime
# container be based on (can be array)
base: nodejs@22

# what ports your app listens on
# and whether it supports http traffic
ports:
- port: 3000
httpSupport: true
envVariables:
PORT: 3000
HOST: 0.0.0.0

# how to start your application
start: pnpm start:frontend
zerops:
- setup: daliborhondotdev
# ==== how to build your application ====
build:
# what technologies should the build
# container be based on (can be an array)
base: nodejs@22

# what commands to use to build your app
buildCommands:
- pnpm --filter @daliborhon.dev/frontend install
- pnpm run build:frontend

# select which files / folders to deploy
# after the build succesfully finished
deployFiles:
- apps/frontend/dist
- apps/frontend/package.json
- apps/frontend/node_modules

# *optional*: which files / folders
# to cache for the next build run
# cache:
# - node_modules
# - package-lock.json

# ==== how to run your application ====
run:
# what technologies should the runtime
# container be based on (can be array)
base: nodejs@22

# what ports your app listens on
# and whether it supports http traffic
ports:
- port: 3000
httpSupport: true
envVariables:
PORT: 3000
HOST: 0.0.0.0

# how to start your application
start: pnpm start:frontend
56 replies
ZZerops
Created by Dally on 6/20/2024 in #💪・community-support
Public IPv6 and a domain
Hello, I did my due research but I'm in no way experienced enough with this, so I'd like a confirmation. In theory, it should be possible to have only the public IPv6 address set up in zerops for a service (node.js Astro project) and route IPv4 through Cloudflare's proxied AAAA DNS record pointing to the public IPv6 right? As I said I searched some information on Google and Cloudflare's forums, and it should be doable. Do any of you have some experience with such thing? Thanks?
30 replies
CDCloudflare Developers
Created by Dally on 4/17/2024 in #workers-help
Is there a possibility to create a subdomain for all workers?
As the title says, is there a possibility to have a subdomain like workers.example.com, and then use routes to route different workers? For example workers.example.com/worker-1 etc. Thanks! I wanted to use routes on my domain, but my example.com is already mapped to a Pages project, that means, it is not getting picked up by routes, because CNAME is directing it to pages.dev.
2 replies