【Azure App Service】App Service设置访问限制后,使用git clone代码库出现403报错

简介: 【Azure App Service】App Service设置访问限制后,使用git clone代码库出现403报错

问题描述

在App Service中,为App Service配置了访问限制,结果导致在克隆App Service的代码时候,遇见403错误。

 

 

问题解答

因为在使用 git clone App Service的应用代码时,使用的URL地址为 https://***.scm.chinacloudsites.cn/***.git,它是通过公网访问,并且会根据设定的访问限制来放行或者是拒绝。

所以解决403的问题就是放开Deny的限制,把需要执行git clone的本地机器公网IP地址加入到下面的Allow List中。

 

参考资料

Azure 应用服务访问限制: https://docs.azure.cn/zh-cn/app-service/overview-access-restrictions#how-it-works

 

 

 

相关文章
|
17小时前
【Azure App Service】PowerShell脚本批量添加IP地址到Web App允许访问IP列表中
Web App取消公网访问后,只允许特定IP能访问Web App。需要写一下段PowerShell脚本,批量添加IP到Web App的允许访问IP列表里!
|
14天前
|
存储 开发工具 数据安全/隐私保护
git报错The project you were looking for could not be found 解决方式
git报错The project you were looking for could not be found 解决方式
131 1
|
2月前
|
机器学习/深度学习 Shell 开发工具
Python使用管道执行git命令报错|4-7
Python使用管道执行git命令报错|4-7
|
2月前
|
存储 Shell 开发工具
8-8|windows上Git报错
8-8|windows上Git报错
|
3月前
|
开发工具 git
Git 中的 fork、branch 和 clone
【8月更文挑战第27天】
152 5
|
3月前
|
开发框架 .NET Windows
【App Service】在App Service中配置Virtual applications and directories,访问目录中的静态文件报错404
【App Service】在App Service中配置Virtual applications and directories,访问目录中的静态文件报错404
|
3月前
|
安全 前端开发 网络安全
【Azure App Service】访问App Service应用报错 SSL: WRONG_VERSION_NUMBER
【Azure App Service】访问App Service应用报错 SSL: WRONG_VERSION_NUMBER
125 0
|
Linux 开发工具 git
git clone命令简介
git clone:   正如上图,当我们打开终端的情况下,默认我们所在的目录是在/home/shiyanlou的,大家可以在终端输入以下命令把目录切换到桌面cd  /home/Desktop这个时候输入'git clone https://....'后,下载的代码就在我们实验楼的环境桌面了。
1377 0
|
3月前
|
存储 开发工具 git
|
3月前
|
开发工具 git
【GIT 第二篇章】GIT常用命令
Git常用命令涵盖初始化、状态管理、提交、分支处理、远程操作等关键流程。`git init`启动本地仓库,`git clone`下载远程仓库。通过`git status`和`git diff`检查工作状态与差异。利用`git add`暂存文件,`git commit`保存更改。借助`git branch`、`git checkout`、`git merge`和`git rebase`管理分支。使用`git fetch`、`git pull`和`git push`同步远程仓库。通过`git reset`、`git revert`和`git checkout`实现版本回退。
63 0