From 858f372ca8236e2565103461cfe4bb5a4aae29c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A1lint=20Bokros?= Date: Thu, 1 Feb 2018 15:57:36 +0100 Subject: [PATCH] Add proxy configuration to ease development --- proxy.conf.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 proxy.conf.json diff --git a/proxy.conf.json b/proxy.conf.json new file mode 100644 index 0000000..234cd6c --- /dev/null +++ b/proxy.conf.json @@ -0,0 +1,18 @@ +{ + "/ws": { + "target": "http://localhost:8888", + "secure": false, + "ws": true + }, + + "/terminal": { + "target": "http://localhost:8888", + "secure": false, + "ws": true + }, + + "/login": { + "target": "http://localhost:8888", + "secure": false + } +}