theodor
Explore posts from serversRailway Networking issues
Hi! This is a bit broad as we're still debugging this, but we've been noticing that certain webhook events don't make it to our servers. This is really bad, since we don't really get an error when that happens (since they don't make it to the server!i )
We can also see that some requests fail because the TLS fails, e.g.
request to https://api.stability.ai/v1/generation/stable-diffusion-xl-1024-v1-0/text-to-image failed, reason: Client network socket disconnected before secure TLS connection was established
From our research, this means something may be still wrong with the proxy. Any ideas what we can do? Should we look into cloudflare?
And yes, we do sleep 3s before we start the services...36 replies
DTDrizzle Team
•Created by theodor on 11/28/2023 in #help
Index not being created in table
Hi! I'm using
drizzle-kit push:pg
to update my local dev database. When I use this command, indices with shared names (e.g. updated_at_idx
) only get created on the first table in the schema.ts
.
For example, if I have:
and:
The created_at
and updated_at
indices on conversations
will NOT be created.
I noticed that the SQL gets generated correctly if I generate the migration.1 replies
nginx revere proxy 503 error
Hi! I wanted to set up a reverse NGINX proxy with mixpanel.
I used the dockerfile provided by them:
And this configuration:
I also enabled a custom domain which is verified (reverse-proxy.rizzgpt.app).
However, I'm getting a 503 when I try to load it. Any idea why?
15 replies
Issues setting up datadog with docker containers
Hi - I'm trying to use private networking to set up datadog. I have two docker files that start normally:
server
and datadog
. Both seem to run fine.
I enabled private networking for the project already.
1. What are the environment variables I can use to refer to the hostnames of the services? I had to hard code them in.
2. It doesn't seem like the services are able to talk to one another. I don't see any errors, but I onyl get silence. Is there something off about the way I defined the hostnames below?
3. When I run railway run echo $DD_SERVICE
or any similar command to check the environment variables of the service, I don't get anything. Is this ok?
Here are the dockerfiles:
Datadog:
81 replies