1
0
mirror of https://github.com/containous/traefik.git synced 2025-01-11 05:17:52 +03:00

Merge pull request #492 from containous/fix-webui-proxy

Fix webui proxying
This commit is contained in:
Emile Vauge 2016-07-05 10:17:49 +02:00 committed by GitHub
commit ecaa146d5b
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');
}
})();