pikachu
pikachu
RRailway
Created by rickitan on 6/11/2024 in #✋|help
My App is Down, no logs for past 15 minutes Restart didn't work
@angelo thanks! Slack connect would be useful, especially since that's our main workspace. I don't see the slack invites, can you resend? DMing you my email
125 replies
RRailway
Created by dardan on 5/22/2024 in #✋|help
Project Dashboard not loading
yea it's super slow for me too
19 replies
RRailway
Created by pikachu on 3/8/2024 in #✋|help
our app is 503ing since this early morning
No description
7 replies
RRailway
Created by sebastiantf on 3/8/2024 in #✋|help
503 Service Unavailable
restarting the service worked for us, but sucks we had to wake up this morning and manually restart it
67 replies
RRailway
Created by pikachu on 3/8/2024 in #✋|help
our app is 503ing since this early morning
63b7280d-bfb7-499f-89d2-73fd8e2a081b
7 replies
RRailway
Created by pikachu on 12/4/2023 in #✋|help
new custom domain limits
thanks angelo!!
13 replies
RRailway
Created by pikachu on 12/4/2023 in #✋|help
new custom domain limits
thank you!! details:
project id: 63b7280d-bfb7-499f-89d2-73fd8e2a081b
service name: kalder-member-portal
new custom domain: foundingmembers.futureplus.xyz
project id: 63b7280d-bfb7-499f-89d2-73fd8e2a081b
service name: kalder-member-portal
new custom domain: foundingmembers.futureplus.xyz
13 replies
RRailway
Created by pikachu on 12/4/2023 in #✋|help
new custom domain limits
is it possible for us to have a one-off domain set up, to help our client launch in the next couple days 🙏 - our CEO is setting up an enterprise call rn
13 replies
RRailway
Created by pikachu on 12/4/2023 in #✋|help
new custom domain limits
i didn't see this banner last week, but was trying to set up a custom domain for our client this morning and was prevented from doing so (w/ screenshot above)
13 replies
RRailway
Created by pikachu on 12/4/2023 in #✋|help
new custom domain limits
yea i think we set up our previous custom domains before this limit took effect, so we have 12 previously
13 replies
RRailway
Created by pikachu on 11/21/2023 in #✋|help
request headers host unexpectedly changed
just did a bit more testing but not sure, nextjs's "raw headers" look similar (host is local), and nextjs middleware is also giving me the wrong host too (local). referer is perfectly fine though, dunno why. luckily referer contains all the information i need anyways, so it's good enough for an app hotfix, hopefully on a different nextjs version, things do work, trying tmrw 🤞
28 replies
RRailway
Created by pikachu on 11/21/2023 in #✋|help
request headers host unexpectedly changed
No description
28 replies
RRailway
Created by pikachu on 11/21/2023 in #✋|help
request headers host unexpectedly changed
types are great 🙂 i remember when i was just writing plain javascript a few years ago, can't imagine going back to that now, stuff would break all the time lol
28 replies
RRailway
Created by pikachu on 11/21/2023 in #✋|help
request headers host unexpectedly changed
No description
28 replies
RRailway
Created by pikachu on 11/21/2023 in #✋|help
request headers host unexpectedly changed
gotcha, yea i think i'll just print out the entire headers, and try "Host"
28 replies
RRailway
Created by pikachu on 11/21/2023 in #✋|help
request headers host unexpectedly changed
gotcha.. yea im not sure, why this is suddenly happening, this is what im running:
const host = req.headers.host;
const forwardedHost = req.headers["X-Forwarded-Host"];
const referer = req.headers.referer;
console.log({ host, forwardedHost, referer });
const host = req.headers.host;
const forwardedHost = req.headers["X-Forwarded-Host"];
const referer = req.headers.referer;
console.log({ host, forwardedHost, referer });
very tame, and this is what im getting back now,
{
host: '[::1]:44943',
forwardedHost: undefined,
referer: 'https://members.lesbenjamins.com/';
}
{
host: '[::1]:44943',
forwardedHost: undefined,
referer: 'https://members.lesbenjamins.com/';
}
idk why it's using the local's host, but just gonna strip referer for now, and hopefully someone else has the same issue as me..
28 replies
RRailway
Created by pikachu on 11/21/2023 in #✋|help
request headers host unexpectedly changed
is https://utilities.up.railway.app/raw a test app? like does it get frequently deployed i wonder - just throwing out questions, since we didn't change any part of our code here at all with header host checking, and suddenly it breaks today
28 replies
RRailway
Created by pikachu on 11/21/2023 in #✋|help
request headers host unexpectedly changed
hm im not sure why - i also just noticed this issue after deploying our app (cause we also do sanity testing after deploys)
28 replies
RRailway
Created by pikachu on 11/21/2023 in #✋|help
request headers host unexpectedly changed
also tried req.headers["x-forwarded-host"], but just got undefined unfortunately
28 replies
RRailway
Created by pikachu on 11/21/2023 in #✋|help
request headers host unexpectedly changed
^ screenshot is with req.headers.host (req: NextApiRequest)
28 replies