Skip to content

Commit

Permalink
backend: Added new bottles CDN service (#2340)
Browse files Browse the repository at this point in the history
This change introduces our new HTTPS endpoint to enable a
geographic redirect to the geographically closest server
to ensure a better and more stable experience.

Should improve: #2057
  • Loading branch information
francescomasala committed Nov 30, 2022
1 parent 7241bb9 commit 2c0fc55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bottles/backend/managers/repository.py
Expand Up @@ -33,17 +33,17 @@
class RepositoryManager:
__repositories = {
"components": {
"url": "https://repo.usebottles.com/components/",
"url": "https://proxy.usebottles.com/repo/components/",
"index": "",
"cls": ComponentRepo
},
"dependencies": {
"url": "https://repo.usebottles.com/dependencies/",
"url": "https://proxy.usebottles.com/repo/dependencies/",
"index": "",
"cls": DependencyRepo
},
"installers": {
"url": "https://repo.usebottles.com/programs/",
"url": "https://proxy.usebottles.com/repo/programs/",
"index": "",
"cls": InstallerRepo
}
Expand Down

0 comments on commit 2c0fc55

Please sign in to comment.