您可以使用站点根目录中的 web.config 文件来限制特定用户。您可以查看以下示例,
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<authorization>
<allow users="abc@Facebook.com, def@gmail.com"/>
<deny users="*"/>
</authorization>
</system.web>
</configuration>
此外,您可以使用 KUDU 控制台 ( http://your-app-url.scm.azurewebsites.net ) 添加和编辑文件。
如果您想使用 Azure AD 进行身份验证,您可以按照以下步骤操作,在 Azure Active Directory 设置刀片中,您可以选择“快速管理模式”并创建一个新的 AD 应用程序来配置谁能够访问我们的 Web 应用程序。单击保存后,尝试通过隐身窗口访问您的网络应用程序(无会话和 cookie),您将被重定向到登录表单。要访问您的应用程序,您需要使用已在 Azure Active Directory 应用程序“NotPublicWebApp”中声明的帐户登录。要在您的 Web 应用程序中管理访问权限,您需要单击 Active Directory 服务,该服务会将您重定向到旧门户。在那里,您可以将更多用户添加到您的 Active Directory,而从“应用程序”选项卡中,您可以管理用户对您的应用程序的访问。更多信息,您可以参考这篇文章:https://ppolyzos.com/2016/08/19/restrict-access-to-your-azure-websites-using-authenticationauthorization/。