Django remote server authentication

I have an environment where multiple virtual machines are deployed throughout a network, but all should authenticate through a centralized cloud based server. Both the VMs and the cloud server have django apps the user can connect to. I am trying to figure out the best way to build this system while leveraging the django login/auth system as much as possible.

Is a django authentication backend on the centralized server suitable for this purpose, or is some other approach needed? If possible, how do you get the VM to point to the centralized server to perform the authorization process through a django login?

Thanks!

链接地址: http://www.djcxy.com/p/5776.html

上一篇: Django Rest框架中的用户认证+ Angular.js Web应用程序

下一篇: Django远程服务器认证