1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

prod server

This commit is contained in:
Kyle Spearrin
2017-06-05 21:15:27 -04:00
parent 5b6c8c3480
commit c6533a961a

View File

@@ -4,16 +4,16 @@ function ApiService(tokenService, appIdService, utilsService, logoutCallback) {
//this.identityBaseUrl = 'http://localhost:33656'; //this.identityBaseUrl = 'http://localhost:33656';
// Desktop external // Desktop external
this.baseUrl = 'http://192.168.1.6:4000'; //this.baseUrl = 'http://192.168.1.6:4000';
this.identityBaseUrl = 'http://192.168.1.6:33656'; //this.identityBaseUrl = 'http://192.168.1.6:33656';
// Preview // Preview
//this.baseUrl = 'https://preview-api.bitwarden.com'; //this.baseUrl = 'https://preview-api.bitwarden.com';
//this.identityBaseUrl = 'https://preview-identity.bitwarden.com'; //this.identityBaseUrl = 'https://preview-identity.bitwarden.com';
// Production // Production
//this.baseUrl = 'https://api.bitwarden.com'; this.baseUrl = 'https://api.bitwarden.com';
//this.identityBaseUrl = 'https://identity.bitwarden.com'; this.identityBaseUrl = 'https://identity.bitwarden.com';
this.tokenService = tokenService; this.tokenService = tokenService;
this.logoutCallback = logoutCallback; this.logoutCallback = logoutCallback;