Fix webui proxying

Signed-off-by: Emile Vauge <emile@vauge.com>
This commit is contained in:
Emile Vauge 2016-07-05 09:34:17 +02:00
parent 68b0e44fbd
commit f50a4d8c2a
No known key found for this signature in database
GPG key ID: D808B4C167352E59
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@
/** @ngInject */
function Health($resource) {
return $resource('/health');
return $resource('../health');
}
})();

View file

@ -7,7 +7,7 @@
/** @ngInject */
function Providers($resource) {
return $resource('/api/providers');
return $resource('../api/providers');
}
})();