nejat-njonjo
nejat-njonjo
RRailway
Created by nejat-njonjo on 4/21/2024 in #✋|help
Private Network Fails
I have 4 services the fourth one is nginx reverse-proxy. Two services are dockerized, the other service is straight nodejs. Now the NodeJs works well, I call the service name with a port number, but calling the other two dockerized fail. I tried entering the whole DNS
api.railway.internal
api.railway.internal
but it doesn't work. What should I do? I am using NGINX, so here is basic config I want to achieve
upstream api_service {
server api.railway.internal:5000 fail_timeout=120;
}
upstream api_service {
server api.railway.internal:5000 fail_timeout=120;
}
Then I can use it in a location block
location /api {
proxy_pass http://api_service
}
location /api {
proxy_pass http://api_service
}
7 replies
RRailway
Created by nejat-njonjo on 4/18/2024 in #✋|help
Failing to spin up Typesense
I am trying to setup a Typesense service from
typesense/typesense:26.0
typesense/typesense:26.0
docker image. I added all required env configs but it fails to start the image.
6 replies
RRailway
Created by nejat-njonjo on 4/18/2024 in #✋|help
Clarification on Pricing
Does the pricing apply to a project or per single service under that project? So for example, I have a Project Doom, under this project I have two services, am I going to pay for Project Doom or individual services under Project Doom?
10 replies