14 questions
0
votes
0
answers
146
views
SvelteKit fetch from static throws 500 on production
Im creating an sveltekit app that fetches json from /static/schemas/{param}.json
The schemas folder will contain hundreds of json files so I really dont want to import it.
Example route: http://...
0
votes
1
answer
86
views
whitelisting public load balancer to specific IPs
For the time being I don't want anyone to be able to access my apps on convox rack. But I do want to put it into production. Is the whitelist parameter on a rack the way to do this?
https://docsv2....
0
votes
2
answers
147
views
convox docker build is very slow
I have a gen3 AWS rack.
My convox build is very slow. (30 minutes+)
I am using a custom docker file in my convox.yml to build my services.
When I run convox build I can see that the docker image is ...
0
votes
1
answer
123
views
How can I clean the build volume?
My build volume is currently at 1TB as I've had to increase it several times over the years to handle out of space errors. Is there anyway I can remove old builds so I can have a smaller build volume?
0
votes
1
answer
71
views
Cannot use wildcard subdomains with Convox Gen3?
We run a cloud platform with subdomains for each customer (similar to how Shopify has mystore.myshopify.com).
It currently runs as a Gen1 app, and will likely need to be upgraded soon.
According to ...
0
votes
1
answer
344
views
InvalidParameterException when running "convox ps"
Suddenly getting a InvalidParameterException when running convox ps:
InvalidParameterException: Invalid identifier: Identifier is for cluster AAAAAAA. Your cluster is BBBBBBB. status code: 400
We ...
-1
votes
1
answer
158
views
Convox CLI deploy gives 502 response
I'm suddenly having issues deploying my apps to AWS ECS using the Convox CLI. When I am trying as of Friday, this is what happens:
$ convox deploy -a my-app -r test
Packaging source... OK
Uploading ...
0
votes
2
answers
132
views
Convox Environment for secret management-evaluation
I am using convox to store secrets, it seems it uses env variables to do that and I am not sure if tha is enough of I need to evaluate another tool such aws or vault
do you have thought about Convox ...
1
vote
1
answer
1k
views
How do I get encrypted credentials to work when upgrading from Rails 5.1.6.2 to 6.0.0?
I've just been through the steps to upgrade our Rails app from 5.1.6.2 to 6.0.0 via 5.2, (I chose to not to worry about the credentials concern until 6.0.0 in case it ended up meaning I had to figure ...
1
vote
1
answer
320
views
deleting convox apps which are linked to resources
I'm getting a weird error from convox when I go to delete a resource:
$ convox apps delete my-app
Deleting my-app... ERROR: app is linked to syslog-1234 resource
Weirdly, when I investigate that ...
0
votes
1
answer
237
views
Convox multiline environment variables
How can I add multiline env variable to convox? I’ve tried to add it via console.convox.com, and only first line is added, other lines are being truncated. Tried via convox env set VAR $VAR, and it’s ...
4
votes
2
answers
6k
views
Cron job on NodeJS server runs multiple times simultaneously due to load balancers
I have cron job services on my nodeJS server (part of a React app) that I deploy using Convox to AWS, which has 4 load balancer servers. This means my cron job runs 4 times simultaneously on each ...
1
vote
1
answer
210
views
How to use local docker images in convox?
Is it possible to use local docker image in convox compose.yml , that has not been pushed yet . I want to maintain tags for images locally and use them in my docker-compose.yml. I do not want to store ...
0
votes
1
answer
949
views
Wrong order of running docker containers in convox/docker-compose
Here is the compose file that I am using. It consist one postgres db container and one redis container. On top of them I have a gunicorn-django-python web server(docker image:python-3.5). There is one ...