Git Providers
With default installation, self-hosted Appcircle comes with the connection options below:
- Bitbucket
- Azure
- GitLab
- GitHub
- Connect via SSH
- Connect via URL

You can configure the Git providers and use them within your self-hosted Appcircle server, the same as in the cloud.
The following sections will give you more details about how to enable or disable Git providers according to your requirements in your hosted environment.
We're assuming that previously you reviewed or followed install self-hosted appcircle section in docs, understood configuration made there and scenarios told there.
Current working directory is assumed appcircle-server
for following steps. See here for installation details.
global.yaml
configuration file is located under project folder.
projects/${YOUR_PROJECT}
You can see an example project configuration from here.
Connect to Bitbucket
To disable the "Bitbucket" option, add the below configuration to global.yaml
.
build:
oauths:
bitbucket:
enabled: false
bitbucketServer:
enabled: false
If you want to re-enable "Bitbucket" again, you can set the enabled
to true
.
You can configure only the self-hosted or cloud "Bitbucket" options using the relevant keys.
- The
bitbucket
key is used to manage Bitbucket (Cloud). - The
bitbucketServer
key is used to manage Bitbucket Server.
For more details about "Bitbucket" usage, see related docs in the Connecting to Bitbucket page.
To apply the changes, please follow the Applying Git Provider Changes section at the end.
Connect to Azure DevOps
To disable the "Azure DevOps" option, add the below configuration to global.yaml
.
build:
oauths:
azureDevopsServices:
enabled: false
azureDevopsServer:
enabled: false
If you want to re-enable "Azure DevOps" again, you can set the enabled
to true
.
You can configure only the self-hosted or cloud "Azure DevOps" options using the relevant keys.
- The
azureDevopsServices
key is used to manage Azure DevOps Services (Cloud). - The
azureDevopsServer
key is used to manage Azure DevOps Server.
For more details about "Azure DevOps" usage, see related docs in the Connecting to Azure DevOps page.
To apply the changes, please follow the Applying Git Provider Changes section at the end.
Connect to GitLab
To disable the "GitLab" option, add the below configuration to global.yaml
.
build:
oauths:
gitlab:
enabled: false
gitlabSelfHosted:
enabled: false
If you want to re-enable "GitLab" again, you can set the enabled
to true
.
You can configure only the self-hosted or cloud "GitLab" options using the relevant keys.
- The
gitlab
key is used to manage GitLab (Cloud). - The
gitlabSelfHosted
key is used to manage GitLab Self-Managed.
For more details about "GitLab" usage, see related docs in the Connecting to GitLab page.
To apply the changes, please follow the Applying Git Provider Changes section at the end.
Connect to GitHub
To disable the "GitHub" option, add the below configuration to global.yaml
.
build:
oauths:
githubApp:
enabled: false
githubEnterpriseServer:
enabled: false
If you want to re-enable "GitHub" again, you can set the enabled
to true
.
You can configure only the self-hosted or cloud "GitHub" options using the relevant keys.
- The
githubApp
key is used to manage GitHub (Cloud). - The
githubEnterpriseServer
key is used to manage GitHub Enterprise Server.
For more details about "GitHub" usage, see related docs in the Connecting to GitHub page.
To apply the changes, please follow the Applying Git Provider Changes section at the end.
GitHub Enterprise Server option is available in version 3.28.2
or later.
Connect via SSH
To disable the "Connect via SSH" option, add the below configuration to global.yaml
.
build:
oauths:
ssh:
enabled: false
If you want to re-enable "Connect via SSH" again, you can set the enabled
to true
.
For more details about "Connect via SSH" usage, see related docs in the Connect via SSH page.
To apply the changes, please follow the Applying Git Provider Changes section at the end.
Connect via URL
To disable the "Connect via URL" option, add the below configuration to global.yaml
.
build:
oauths:
publicRepository:
enabled: false
If you want to re-enable "Connect via URL" again, you can set the enabled
to true
.
For more details about "Connect via URL" usage, see related docs in the Connect via URL page.
To apply the changes, please follow the Applying Git Provider Changes section at the end.
Applying Git Provider Changes
You can add or remove git providers at installation steps or later when you need. Following sections will explain how to apply changes especially after installation.
Let's assume we want to disable both "Connect via SSH" and "Connect via URL" options. Then we need to add below configuration to our global.yaml
.
build:
oauths:
ssh:
enabled: false
publicRepository:
enabled: false
You should have only one build.oauths
key in your global.yaml
file.
Keep in mind that if you have multiple build.oauths
keys in global.yaml
, then the last one will be used in the Appcircle server runtime.
Be careful while configuring different connection options at the same time. Union them under one build.oauths
key in the global.yaml
.
If we do this at installation time then there is no extra step to take. These options will be disabled on first boot without any extra effort.
If we don't do the configuration at installation, then after editing global.yaml
, we need to apply below steps to activate changes.
We're assuming that previously you reviewed or followed install self-hosted appcircle section in docs and applied example scenario.
Following steps are using example project as project naming, which was told there.
- Shutdown Appcircle server.
./ac-self-hosted.sh -n "spacetech" down
- Apply configuration changes.
./ac-self-hosted.sh -n "spacetech" export
- Boot Appcircle server.
./ac-self-hosted.sh -n "spacetech" up
On complete, refresh your browser and login to Appcircle with your account. You should see that "Connect via SSH" and "Connect via URL" option is disabled on the connection page. 🎉

Need help?
Get help from Appcircle's support team, or see how others are using Appcircle by joining our Slack Channel.