Supabase.co domain blocked by Etisalat

Hi, Since yesterday I am without supabase service on my apps due to the fact that the service provider Etisalat in UAE had apparently blocked the domain. After contacting them, they have informed the same was due to intellectual property rights infringements…. What is this about @supabase ??? Would Supabase be able to reach out to them to solve the situation? Thank you
164 Replies
tomaspozo
tomaspozo2mo ago
Hey! Was that an official statement you got from Etisalat?
Luis Simões
Luis SimõesOP2mo ago
Yes it was
tomaspozo
tomaspozo2mo ago
Have you created a support ticket?
Luis Simões
Luis SimõesOP2mo ago
No description
Luis Simões
Luis SimõesOP2mo ago
Supabase team should contact them ASAP
tomaspozo
tomaspozo2mo ago
Thank you! The team is on it I was asking if you file a support ticket on the SB dashboard
Luis Simões
Luis SimõesOP2mo ago
Yes i did - SU-241418
tomaspozo
tomaspozo2mo ago
thanks! The team is already looking into this
Luis Simões
Luis SimõesOP2mo ago
Please keep us updated here 🙂
tomaspozo
tomaspozo2mo ago
Sure Several users are reporting that using a VPN works... so this could be an temp workaround for you to keep working on your apps...
Luis Simões
Luis SimõesOP2mo ago
Yes VPN or using DU works…. But it does not solve the disruption suffered by consumer users or our apps 🙄
tomaspozo
tomaspozo2mo ago
Yeah, agree, what I've personally done in the past is quickly add a banner in my website
Luis Simões
Luis SimõesOP2mo ago
But the banner will look bad aince it will cover the whole spectrum of users including those from other countries not affected by any of this Plus this is very relevant because people may have paid for services in these apps and now its a problem for the developers….
tomaspozo
tomaspozo2mo ago
Yeah its a difficult situation, just sharing what I've done in the similar situations.
will cover the whole spectrum of users including those from other countries not affected by any of this
In this country/ISP specific issues, I would post something like: *UAE users: there is an active connectivity issue with [ISP name]. Our infrastructure provider is already working on this. To use our service, please use a different ISP or a VPN. *
Luis Simões
Luis SimõesOP2mo ago
Be the way, tricky to incentivize the usage of VPN in UAE since its illegal and the apps released need to be registered locally. Just a potential side note. Well, this could imply that developers are prepared for this and it’s simple… depending on the nature of the application this can actually not be that simple… as for example the publishing of new versions of mobile apps in app store etc… Lets pray for Supabase to be able to revert this situation with Etisalat in the next hours or so. 🙈🫠
tomaspozo
tomaspozo2mo ago
tricky to incentivize the usage of VPN in UAE since its illegal
oh wow... regional challenges lets hope it gets solved! the SB team is working on it
inder
inder2mo ago
If its urgent, you can setup a proxy server and that proxy server will make requests to supabase and forward response back to your app. Will add some latency though
Luis Simões
Luis SimõesOP2mo ago
Yes but again, that is an architectural change to allow these dynamic changes… not easy to implement in few hours and even less to make things approved and rolled out across platforms
inder
inder2mo ago
true
silentworks
silentworks2mo ago
It's probably worth it for situations like this which doesn't have any estimated time for when they will be resolved and you would stiļl have the reverse proxy for future use.
Luis Simões
Luis SimõesOP2mo ago
I agree but that would not come without a cost… latency and compute overhead and budget required. How much…. Depends on the app itself. The best is for Supabase to clear itself with providers. Imagine a provider blocking Azure or AWS 🙂
silentworks
silentworks2mo ago
What I'm stating is that whilst Supabase tries to clear itself your users are experiencing downtime which could be resolved by a reverse proxy. Just a suggestion here, not telling you what to do.
xch12
xch122mo ago
will custom domain fix this issue?
silentworks
silentworks2mo ago
No as it's likely the IP that is blocked and not just the supabase.co domain name.
Luis Simões
Luis SimõesOP2mo ago
A pool of IPs I suppose? I understand. My point is that its not an easy route and it probably takes less time for Supabase to sort this with the provider.
DevilsBlade0
DevilsBlade02mo ago
This happened on my product hunt launch date 😂😂😂 thinking of seriously migrating at this point… and nothing yet from support
Luis Simões
Luis SimõesOP2mo ago
By the way this is happening more than 24 hours ago already
garyaustin
garyaustin2mo ago
Yes. There were 2 users yesterday afternoon reporting it here. It was not until last night more users reported here so it got escalated. Unclear how many support requests were generated. No Github issues I observed. We need 3 or more issues to escalate from a user helping user forum to the Supabase team.
Luis Simões
Luis SimõesOP2mo ago
Yesterday I also created another ticket with the issue. Was still not aware it was a provider blockage situation. 🙁
FURY
FURY2mo ago
It's still happening until now. Using VPN does work but as you said it's not a real solution for users
Edwin Paul
Edwin Paul2mo ago
Oh lol and here i thought it was my router 😂 it works on 1.1.1.1
FURY
FURY2mo ago
It took me sometime to figure it out lol, until I saw this post
DevilsBlade0
DevilsBlade02mo ago
Guys, create support tickets and send the ticket numbers here please so we can speed this up
inder
inder2mo ago
If anyone wants to go down the path of setting up a proxy server, you can use this config. So far, I've tested with auth, rest api, realtime (postgres_changes) and storage. docker-compose.yaml
services:
caddy:
image: caddy:2.10.2
restart: unless-stopped
ports:
- 443:443
- 80:80
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile
- ./caddy_data:/data
- ./caddy_config:/config
services:
caddy:
image: caddy:2.10.2
restart: unless-stopped
ports:
- 443:443
- 80:80
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile
- ./caddy_data:/data
- ./caddy_config:/config
Caddyfile:
(cors) {
@preflight method OPTIONS
handle @preflight {
header Access-Control-Allow-Origin *
header Access-Control-Allow-Methods "GET,HEAD,PUT,PATCH,POST,DELETE,OPTIONS"
header Access-Control-Allow-Headers *
header Access-Control-Max-Age "86400"
respond "" 204
}
}

# Replace example.com with your domain
example.com {
import cors
@supa_api path /rest/v1/* /auth/v1/* /realtime/v1/* /functions/v1/* /storage/v1/*

handle @supa_api {
reverse_proxy {
header_up Host {http.reverse_proxy.upstream.host}
to https://INSTANCE_ID.supabase.co
}
}
}
(cors) {
@preflight method OPTIONS
handle @preflight {
header Access-Control-Allow-Origin *
header Access-Control-Allow-Methods "GET,HEAD,PUT,PATCH,POST,DELETE,OPTIONS"
header Access-Control-Allow-Headers *
header Access-Control-Max-Age "86400"
respond "" 204
}
}

# Replace example.com with your domain
example.com {
import cors
@supa_api path /rest/v1/* /auth/v1/* /realtime/v1/* /functions/v1/* /storage/v1/*

handle @supa_api {
reverse_proxy {
header_up Host {http.reverse_proxy.upstream.host}
to https://INSTANCE_ID.supabase.co
}
}
}
Setup with js sdk
const url = "https://example.com";
const key = "YOUR_KEY";

const supabase = createClient(url, key);
const url = "https://example.com";
const key = "YOUR_KEY";

const supabase = createClient(url, key);
Shouldn't take more than 5 minutes Let me know if some service isn't proxied
Luis Simões
Luis SimõesOP2mo ago
Any feedback on if the team was already able to contact Etisalat?
silentworks
silentworks2mo ago
They are working on it, the status page is what you should follow for updates https://status.supabase.com/incidents/spyxwjqn7d2f
Luis Simões
Luis SimõesOP2mo ago
🙁 there is no update there. Taking time to solve this. 🫠
silentworks
silentworks2mo ago
That is the update and yes companies take time to respond to companies too.
Edwin Paul
Edwin Paul2mo ago
e& must be busy auditioning their next celebrity ambassador.
DevilsBlade0
DevilsBlade02mo ago
Ye think this one is definitely gonna take time, but having the banner on support page is a good indication for me that they won’t remove till sorted so yea Selling to US customers for now lol
Luis Simões
Luis SimõesOP2mo ago
M🙄😶‍🌫️🫥😳 This is not about selling… is about letting businesses down at the moment in the region. That is not a light thing for sure.
DevilsBlade0
DevilsBlade02mo ago
Man, it’s Etisalat.. same way they’re banning voip, and porn and vpn and the list goes on, probably some douche used supabase the wrong way and got us all f*** It sucks I know, this literally happened during my product hunt launch and ruined it all for me But yea Setup proxy it works I’m gonna do it even if this gets solved, can’t afford it happening in the future The one thing I’d blame supabase for is not being pro active, they started acting 2 days after the issue started, but it is what it is
silentworks
silentworks2mo ago
Again this is not Supabase support and this is where user's reported the issue two days before. Supabase would not be aware of the issue until it gets escalated or there are many support tickets in stating the issue. Also it being reported on a weekend isn't really gonna get it noticed quickly too as there are less Supabase support staff working on the weekend (just like every other company out there and this would be first line support too who cannot really escalate something this big with an ISP). At the point we notified Supabase when we had enough people reporting the issue is when they started to look into it.
DevilsBlade0
DevilsBlade02mo ago
And again, I’m not treating this as supabase support, I’m expressing my opinion. This is such a long message from you, while I’m literally saying it’s not supabase fault and I added two lines expressing something that could’ve been done better. So instead of defending supabase as if they pay your salary, you shouldn’t be this salty and understand how frustrating this is to us and our customers and take a step back and report to supabase. seriously
ShadowFT0
ShadowFT02mo ago
Any update guys?
ShadowFT0
ShadowFT02mo ago
@silentworks @inder will custom domain fix this problem?
No description
ShadowFT0
ShadowFT02mo ago
I see, thanks
أواب || Awab
Not sure if I should create another discussion for this, but I tried the reverse proxy solution for local development and it didn't workout for me, I get a 'UNABLE_TO_GET_ISSUER_CERT_LOCALLY' from my routes (using NextJs) specifically with the supabase.auth function (I didn't test other function). I tried to understand the issue and concluded that for development it wouldn't work since the reverse proxy itself would forward the request using the same ISP, so it isn't really solving any issue, but I may be misguided in my understanding here. I hope I can get some direction on how to set it up for development if there really is a difference between production and development setups.
inder
inder2mo ago
This is meant to be used on a server. When using locally, you're right that the reverse proxy will be using your own ISP to make http requests.
أواب || Awab
Is there another solution for development scenarios?
inder
inder2mo ago
supabase cli
Luis Simões
Luis SimõesOP2mo ago
What you mean by some douche?? Supabase should be cleared on all providers as per the services they deliver… its not their fault of how customers end up using the service. Those can be reported and dealt accordingly but they can never trigger a blacklist on a provider. Imagine a “douche” using Azure app and publishing some weird content and they go and block entire Microsoft Azure customers 😂 That would never happen… why? Microsoft must have some sort of way to clear their services/IP Ranges with the providers no?
أواب || Awab
Could you expand/explain this a bit more, how can I use supabase cli to workaround the ISP blocking an IP?
inder
inder2mo ago
I meant use supabase cli to start a local supabase instance and use that for your local development.
أواب || Awab
Alright, Thank you
ShadowFT0
ShadowFT02mo ago
I did it in cloudflare, works so far
RayanAbid
RayanAbid2mo ago
Hi @inder Hope you are well Sorry! I'm new to this but what service did you use to host this? I tried doing the same using render and created a simple node js app as well. but it is not working for my client's in UAE? Any help would be greatly appreciated
inder
inder2mo ago
I ran the container on an ec2 instance. What error do you get?
DevilsBlade0
DevilsBlade02mo ago
5G is now affected too, different ISP Anyone else?
inder
inder2mo ago
Here is a repo to quickly deploy a proxy to Supabase, this should allow UAE users to by pass the supabase.co ban. https://github.com/singh-inder/proxy-to-supabase-cloud Please note that: - This is not an official solution, is a workaround provided by a community member. - The repo mentions render, but it acutually could be deployed to any other PaaS that supports nodejs. - It has not been completely tested in production, so there might be things that won't work properly. - Make sure you read the README.md to understand the scope of the solution. - If you are testing this, please provide feedback (better to create an issue on github) so this can help other community members while the issue is solved.
DevilsBlade0
DevilsBlade02mo ago
I’ve done a proxy on digital ocean yesterday, it works on some things and breaks on others, will give this a go thank you
Edwin Paul
Edwin Paul2mo ago
Has Supabase experienced a regional issue like this before, or is this the first time?
DevilsBlade0
DevilsBlade02mo ago
Never from my experience, been using supabase since it first came out
Edwin Paul
Edwin Paul2mo ago
Experiencing this on DU network as well.
garyaustin
garyaustin2mo ago
There have had outages with cloudflare and AWS but never had an ISP ban that I've seen or the ISP was so small the issue was never figured out to be that.
Edwin Paul
Edwin Paul2mo ago
Etisalat having beef with Supabase was the last plot twist I expected this week. It doesn't even make sense
tomaspozo
tomaspozo2mo ago
Hey @DevilsBlade0 let us know how it went
DevilsBlade0
DevilsBlade02mo ago
I gave up, waiting on a fix from supabase or a work around, the whole proxy thing does more damage than fixing unfortunately Yea the carpet ban is quiet lazy from Etisalat engineers in my opinion, but I’m sure they know something we don’t. Guess we’ll have to wait and see
just_josh 🇦🇪 🇳🇿
hi, all just wanted to reiterate I'm facing the same issue. I've raised it with E& as well as Supabase (although I'm currently on a free plan). I've also raised awareness and posted to LinkedIn my frustrations (tagging E& and Supabase). I'm hoping this is resolved asap, but will need to start looking at a work around (reverse proxy as some of you have mentioned), however I'm not that clued up and building my site through Lovable. Let's hope this is fixed asap!
Abdun Noor Faruki Biswas
@inder Brother, can you tell me which Fastify GitHub repo I should deploy on Render? I have deployed, as, as you can see in the image, and follow the instructions you have given in your proxy-to-supabase-cloud, and I am getting CORS error. Can you tell me where I am making the mistake?
No description
No description
inder
inder2mo ago
In the supabase client, are you using the url which was generated by render after deploying?
Abdun Noor Faruki Biswas
Yes I have stored the URL in the .env file
inder
inder2mo ago
Wait let me check
Abdun Noor Faruki Biswas
Okay, thanks, bro
inder
inder2mo ago
I don't see any cors errors. Are you sure that the values you've added are correct?
No description
inder
inder2mo ago
This is how it should look. No trailing slashes
No description
inder
inder2mo ago
and inside app, no trailing slashes
No description
Abdun Noor Faruki Biswas
@inder Let me check @inder Thank you so much, brother, now it's working properly. I was using another GitHub repo.
Luis Simões
Luis SimõesOP2mo ago
Hey everyone it appears that now the blockage is global in UAE for both providers Etisalat and DU. DU was working previously for me but now it is not anymore. Can anyone confirm as well?
Edwin Paul
Edwin Paul2mo ago
How long is this going to take? 🥲 I think i should self-host my future supabase projects https://status.supabase.com, yep it's official
Luis Simões
Luis SimõesOP2mo ago
This is insane :((( Firebase 🙁 Supabase trying to reach out to them via email or what not is not going to work… this cannot be taken like this. There should be a comms channel to facilitate these issues. Saying they are not responding means the comms channel is far from being the ideal one… Now to help the situation the Middle East loses a fiber optic cable under sea 😂🙈
M.panah
M.panah2mo ago
Hi , first thanks for your effort In my project all services are connected except storage , can you help me on this?
inder
inder2mo ago
Hi, please share the error you get
M.panah
M.panah2mo ago
Solved bro thanks
Horizon
Horizon2mo ago
I had reached to TDRA (the Regulators in UAE) about the blockage, and they have responded as follows; Case Number BUB-25-10XXXXXXX Case Date 9/9/2025 12:51:44 PM Closed Date 9/10/2025 9:53:43 AM Rejection Reason Dear Applicant, Kindly note that the URL is not blocked on either the Etisalat or Du networks. Please check with your service provider. Thank you for contacting TDRA. ** Sadly, Nobody is taking the ownership and users like us are significantly affected and figuring out move out plans from supabase.
tomaspozo
tomaspozo2mo ago
What URL you send them for validation?
Horizon
Horizon2mo ago
supabase.co
Luis Simões
Luis SimõesOP2mo ago
That is a lie. I got confirmation from Etisalat os is blocked due to copyright infringement
tomaspozo
tomaspozo2mo ago
@Luis Simões sent you a DM could you please check? I’m not aware of how things work across this organization that you talked with and the ISPs. But I imagine ISPs can take individual actions?
Luis Simões
Luis SimõesOP2mo ago
Will check the DM, but yes I spoke to the ISP
inder
inder2mo ago
A user posted this in one of the other threads. Can anyone in UAE confirm?
No description
DevilsBlade0
DevilsBlade02mo ago
Nothing on my side yet unfortunately, hopefully it’s gradual and we all get back online soon. Network Etisalat WiFi Can’t find this tweet for some reason
aksh
aksh2mo ago
its on his replies section. can search by keyword "supabase uae" filter by latest
aksh
aksh2mo ago
I got one workaround for UAE network block. and its working well. no proxy needed. just change your supabase url from .co to .in
inder
inder2mo ago
Have you verified with UAE users?
aksh
aksh2mo ago
yes, client sent the video.
Bob365
Bob3652mo ago
Thank you guys for the solution and help
inder
inder2mo ago
@aksh have you verified with all the services? I think it should work but just to be sure
aksh
aksh2mo ago
I am using almost all services of the supabase from auth, database, storage working well.
inder
inder2mo ago
and realtime?
aksh
aksh2mo ago
nah
inder
inder2mo ago
If the DNS is resolving now, I believe that should work as well. But @Bob365 as you're in UAE can you test if the realtime service works fine?
Bob365
Bob3652mo ago
Will check realtime service. Give me a couple of hours though
DevilsBlade0
DevilsBlade02mo ago
Wow this works? Amazing will give it a shot
inder
inder2mo ago
A couple of users have reported that it does
DevilsBlade0
DevilsBlade02mo ago
Ok will give it a try and report back
inder
inder2mo ago
I had a chat with supabase support about this and they don't recommend to use supabase.in for the ISP issue. If you're working locally, then update DNS server to 1.1.1.1 and use proxy in production
DevilsBlade0
DevilsBlade02mo ago
It works but not for storage, gotta update those links too Ok noted thank you, I will wait
Astrobubu
Astrobubu2mo ago
Hi everyone, I used the .run url and it works for me right now, I'll keep yall updated if something breaks
inder
inder2mo ago
Just want to let you know there are some limitations with this url. The auth callbacks and storage urls still generate with supabase.co domain
Astrobubu
Astrobubu2mo ago
i swtiched the auth callback from google so it works but i definetly need to check if the storage one works. okay it definitely breaks some aspects. well as long as my user doesnt refresh their page, we gucci 😂
inder
inder2mo ago
You can add a banner, DONT REFRESH
Astrobubu
Astrobubu2mo ago
well i havent published my webapp yet so only my uae friends are suffering
inder
inder2mo ago
Custom domains seem to be working Some users have mentioned that in reddit posts Haven't tried it myself Otherwise the prebuilt proxy is the only solution
Muneeb Awan
Muneeb Awan2mo ago
I've added a custom domain but the storage URLs are still not accessible even though the users are accessing the new (custom domain) storage links. What am I missing? followed the guide from YT to create custom domain on Supabase
tomaspozo
tomaspozo2mo ago
Do you se your domain ready and confirmed to make the switch on the Supabase dashboard?
Muneeb Awan
Muneeb Awan2mo ago
Yup .. I've activated the custom domain and made the switch on production. Got a friend in Dubai to use the platform, open a storage URL link with the custom domain and it failed to load.
tomaspozo
tomaspozo2mo ago
Oh.. I believe storage links do get assigned to the Supabase.co domain So that’s why it does not work The rest works fine?
Muneeb Awan
Muneeb Awan2mo ago
https://db.postnitro.ai/storage/v1/object/public/media/editor/external/cd13ea0d-4e09-419b-bf22-0cacfd4d82f3-pexels-photo-2599244.jpeg This is the storage link .. see how it starts with our custom domain (db.postnitro.ai) This link opens up fine for me but for the friend in Dubai it would not load We use these URLs in our editor so we need them as it is .. for all users in UAE they are broken URLs. The custom domain is still active but I've reverted back to the original domain on production
inder
inder2mo ago
Hi Muneeb, has your friend shared what error they see in the browser console?
Muneeb Awan
Muneeb Awan2mo ago
this is what they see .. the main domain postnitro.ai is accessible to them .. the sub domain is not
No description
Citizen13𓂆 | MobDev
I'm in the UAE and can confirm that it doesn't work and I'm facing the same issue with my project; however it's not only for storage, but also for authentication and db api.
Muneeb Awan
Muneeb Awan2mo ago
we aren't using auth and all supabase functions are handled from the server not the edge so no issue with them .. the only issue is with the public URL from storage as we are using them directly seems like a pointless overhead to do this for all users as this issue is isolated to a specific region and also this would increase latency .. good suggestion though
inder
inder2mo ago
I agree with the latency point. But not completely pointless for people who can't afford downtime while this issue persists. Or if you have a nexjts app and are not using realtime then this is also a solution https://discord.com/channels/839993398554656828/1413049145215684648/1415375149905088533 This way nextjs server acts as a proxy
Muneeb Awan
Muneeb Awan2mo ago
I don't think this would work .. the reverse proxy would work I guess with our custom domained storage URLs .. the issue is only primarily for storage URLs in my case
inder
inder2mo ago
Why? I assume you will deploy nextjs app to either vercel or a standalone build for docker image and deploy it to some cloud. And I don't use nextjs so correct me if I am wrong but as far as I can tell almost everyone is using react 19 and streams jsx from server. This way server makes request to supabase, there won't be an issue of ISP and server responds back
Muneeb Awan
Muneeb Awan2mo ago
You're right about SSR for API calls, but the issue is with storage URLs specifically. We're using Supabase storage URLs directly in <img> tags (like <img src={slide.image.url} />). Even with React 19 and server-side streaming, the browser still needs to fetch these images directly from Supabase's storage domain. The server can render the HTML with the image URLs, but the actual image loading happens client-side when the browser makes GET requests to those URLs. Since the ISP blocks Supabase storage domains, users in the UAE can't load the images even if the rest of the app is server-rendered. We'd have to proxy every image request through our server (not just the initial HTML), which would significantly increase bandwidth costs and latency for all image assets. That's why the reverse proxy solution makes more sense for this specific regional blocking issue.
inder
inder2mo ago
Yeah we're on the same page about costs. If you already rent a server then caddy will be a better choice. Otherwise you can deploy the nodejs proxy to render Render has a free tier
aksh
aksh2mo ago
The Times of India
Undersea cables cut in Red Sea: Internet disrupted across Asia, Mid...
Internet services faced disruptions across Asia and the Middle East due to severed undersea cables in the Red Sea. The incident impacted connectivity in countries like India and Pakistan, with potential causes ranging from ship activity to deliberate attacks. While the Houthi rebels have denied involvement, Yemen's government accuses them of thr...
No description
aksh
aksh2mo ago
Does Supabase use Azure in their backend?
inder
inder2mo ago
This ISP issue has been going on since Sep. 1. The red sea issue was reported on Sep. 6
silentworks
silentworks2mo ago
Not that I know of. It's mainly AWS and Cloudflare from what I know.
Luis Simões
Luis SimõesOP2mo ago
Have anyone confirmed that it seems working recently?
Horizon
Horizon2mo ago
Yes its workig now without VPN or proxies.
inder
inder2mo ago
For both Etisalat and Du?
inder
inder2mo ago
Another user has confirmed working for them too
No description
inder
inder2mo ago
No description
inder
inder2mo ago
Hi @aksh can you also confirm this with your users
aksh
aksh2mo ago
My client has to confirm, as I am not currently in UAE
Edwin Paul
Edwin Paul2mo ago
It's working for me on Etisalat.
Luis Simões
Luis SimõesOP2mo ago
DU is still not working
tomaspozo
tomaspozo2mo ago
Hey all! Many people confirming Etilasat is working. We are missing confirmations from Du users… anyone using Du can confirm if is working too?
Bob365
Bob3652mo ago
I am using DU, still not working What is the difference between using .co and .in? my project is in prototyping so am inclined to use .in for the URL as this seems to be a temporary issue which should be rectified
codingstark
codingstark2mo ago
DU is still not working
garyaustin
garyaustin2mo ago
New update.
DevilsBlade0
DevilsBlade02mo ago
Etisalat works here So happy, finally
Astrobubu
Astrobubu2mo ago
i just finished migration to convex and this happens hahahahaha imma kms time to roll back
essa
essa2mo ago
hey everyone, could someone confirm if du is also working now or not yet? we were informed that they should have restored the access
DevilsBlade0
DevilsBlade02mo ago
Will try now No still, tried on 5G from Icognito chrome Tested auth and storage
essa
essa2mo ago
thank you, we will pass this to the UAE authorities. i believe du is working on restoring access now
DevilsBlade0
DevilsBlade02mo ago
Prefect thank you guys
essa
essa2mo ago
hey, sorry for bothering you, but has du started to work again now?
DevilsBlade0
DevilsBlade02mo ago
Hey sorry just saw this now. Yes it’s working on 5G, just tested
codingstark
codingstark4w ago
Supabase postgres url still not working here in Dubai and i am using ezlink which is kind of affilated to DU
inder
inder4w ago
What error do you get?
codingstark
codingstark4w ago
0 | res = resolve 41 | rej = reject 42 | }).catch((err) => { 43 | // replace the stack trace that leads to TCP.onStreamRead with one that leads back to the 44 | // application that created the query 45 | Error.captureStackTrace(err) ^ DNSException: getaddrinfo ENOTFOUND syscall: "getaddrinfo", errno: 4, code: "ENOTFOUND" at <anonymous> (/Users/himanshum/Projects/bun/whatsappchat/node_modules/pg-pool/index.js:45:11) when i change to mobile data net of du this work fine
inder
inder4w ago
have you contacted the provider?
codingstark
codingstark4w ago
yes
inder
inder4w ago
any response?

Did you find this page helpful?