Is there a way to disable the IP whitelist on Open Cloud?

Hello,

I’ve made an Open Cloud application and put it on a cloud VM, but the only issue is that it seems like the IP that the VM uses rerolls every time I push my code to it, so that means that the API request will fail because the IP is not whitelisted

On Open Cloud, it seems like you’re forced to whitelist specific IPs. Is there a way to disable it or use wildcards? I’ve tried * but it doesn’t work.

Thank you.

1 Like

I’m not sure, try 0.0.0.1 or 0.0.0.0.

I tried, no luck.

I removed my PC from the whitelist and tried, and the same error cropped up, so it’s 100% Roblox that’s causing it.

json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
127.0.0.1 - - [24/Jun/2023 16:32:44] "POST /api/redeem HTTP/1.1" 500 -

Weird, it seems to be returning “Invalid API key.”?

Unwhitelisted:
401 b'Invalid API Key.'
Whitelisted:
200 b'{DS data}'

0.0.0.0/0 will whitelist every IP. This is specific to IPv4 addresses while for IPv6 addresses 0000:0000:0000:0000:0000:0000:0000:0000/0 should be used instead.

3 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.