Jan Saidl
Jan Saidl
ZZerops
Created by bravisek on 11/18/2024 in #💪・community-support
Let's encrypt for subdomain wildcard
Hi, unfortunately our L7 HTTP balancer does not currently support wildcard domains and their routing to the backend. I think we need some new features: 1. custom certificarte 2. wildcard domain routing 3. support DNS-01 challenge
18 replies
ZZerops
Created by David Vurbs on 11/18/2024 in #💪・community-support
Invalid YAML parameter for Bun
Can you please send your zerops.yaml ?
11 replies
ZZerops
Created by David Vurbs on 11/18/2024 in #💪・community-support
Invalid YAML parameter for Bun
Hey, Bun is evolving fast. We have added new versions bun@latest bun@nightly bun@canary [email protected] and the alias for [email protected] accidentally dropped out. I'm working on getting this alias back.
11 replies
ZZerops
Created by Dally on 11/17/2024 in #💪・community-support
Origin unreachable
I think it's connected the 523 error and address being in use.
16 replies
ZZerops
Created by Dally on 11/17/2024 in #💪・community-support
Origin unreachable
@Dally If it happens again, please let me know.
16 replies
ZZerops
Created by Dally on 11/17/2024 in #💪・community-support
Origin unreachable
This is something else. It's accessing instance public IPv6 directly from cloudflare. The problem was that the node was already there and the new one couldn't start. Unfortunately I didn't get a chance to look before the restart.
16 replies
ZZerops
Created by EdwardD on 11/14/2024 in #💪・community-support
502 Bad Gateway when using Zerops Subdomain Access
I'm always happy when it's not zerops' fault 😉
42 replies
ZZerops
Created by EdwardD on 11/14/2024 in #💪・community-support
502 Bad Gateway when using Zerops Subdomain Access
No description
42 replies
ZZerops
Created by EdwardD on 11/14/2024 in #💪・community-support
502 Bad Gateway when using Zerops Subdomain Access
I'm working on a fix.
42 replies
ZZerops
Created by EdwardD on 11/14/2024 in #💪・community-support
502 Bad Gateway when using Zerops Subdomain Access
I think there is a problem with installing L7balancer for the LEGACY core 😦
42 replies
ZZerops
Created by elite-benni on 11/14/2024 in #💪・community-support
Monorepo with 2 Apps cli push specific app
Hi, you can still have one zerops.yaml. In which there can be more setup sections. By default, the setup with the same name as the target service is used. You can specify which setup you want to use using the --setup flag zcli push --setup SETUP
zerops:
- setup: app1
build:
base: go@latest
buildCommands:
- echo "build app 1"
deployFiles: main

run:
base: alpine@latest
start: ./main --port 8080

- setup: app2
build:
base: go@latest
buildCommands:
- echo "build app 2"
deployFiles: main

run:
base: alpine@latest
start: ./main --port 8080
zerops:
- setup: app1
build:
base: go@latest
buildCommands:
- echo "build app 1"
deployFiles: main

run:
base: alpine@latest
start: ./main --port 8080

- setup: app2
build:
base: go@latest
buildCommands:
- echo "build app 2"
deployFiles: main

run:
base: alpine@latest
start: ./main --port 8080
zcli push --setup app1 zcli push --setup app2
5 replies
ZZerops
Created by slowhog on 10/16/2024 in #💪・community-support
Java Service Maven Permission Denied
💓 Glad to hear it. We're trying to do our best. And we still have much to improve.
11 replies
ZZerops
Created by slowhog on 10/16/2024 in #💪・community-support
Java Service Maven Permission Denied
If you need npm in your build you can add nodejs@20
build:
os: alpine
base: [ java@21 , nodejs@20 ]
build:
os: alpine
base: [ java@21 , nodejs@20 ]
11 replies
ZZerops
Created by slowhog on 10/16/2024 in #💪・community-support
Java Service Maven Permission Denied
Ok, it looks like you changed the permissions of the nvmw file and the chmod command will fix it.
11 replies
ZZerops
Created by slowhog on 10/16/2024 in #💪・community-support
Java Service Maven Permission Denied
Just give me a minute. I'll take a look.
11 replies
ZZerops
Created by slowhog on 10/16/2024 in #💪・community-support
Java Service Maven Permission Denied
Hi @slowhog , prepareCommands is one stage before the source code is available.
build:
axis: alpine
base: java@21
buildCommands:
- chmod +x mvnw
- ./mvnw clean install
deployFiles: target/admin-0.0.1-SNAPSHOT.jar
run:
axis: alpine
base: java@21
start: java -jar target/admin-0.0.1-SNAPSHOT.jar
port:
- port: 8080
httpSupport: true
build:
axis: alpine
base: java@21
buildCommands:
- chmod +x mvnw
- ./mvnw clean install
deployFiles: target/admin-0.0.1-SNAPSHOT.jar
run:
axis: alpine
base: java@21
start: java -jar target/admin-0.0.1-SNAPSHOT.jar
port:
- port: 8080
httpSupport: true
11 replies