-
Hi, I'm wondering if it is possible to disallow unauthenticated API access completely? My goal is that https://example.org/featured and so on doesn't show anything if I'm not logged in. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
It is not currently possible to do this inside of Misskey. There is an open PR #7709 in this direction but I can not tell if or when it will be merged. You could maybe achieve something like this with using a VPN and IP address based nginx access rules to block access to all If you also do not want federation you could also use a VPN and block all outside access in a similar setup. |
Beta Was this translation helpful? Give feedback.
-
It seems i can just flip |
Beta Was this translation helpful? Give feedback.
It is not currently possible to do this inside of Misskey. There is an open PR #7709 in this direction but I can not tell if or when it will be merged.
You could maybe achieve something like this with using a VPN and IP address based nginx access rules to block access to all
/api/
routes outside the VPN. This would still allow federation with other instances.If you also do not want federation you could also use a VPN and block all outside access in a similar setup.