fix(proxy): mount on /proxy

This commit is contained in:
Ivan Shmidt
2020-07-13 11:22:08 +02:00
parent ac27ab635b
commit f1b479c772
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ async function main() {
.addRouter('/auth', await auth(authEnv))
.addRouter('/identity', await identity(identityEnv))
.addRouter('/techdocs', await techdocs(techdocsEnv))
.addRouter('/', await proxy(proxyEnv));
.addRouter('/proxy', await proxy(proxyEnv));
await service.start().catch(err => {
console.log(err);