From f7629e36e06fad93cac0098335c31587e350c4c1 Mon Sep 17 00:00:00 2001 From: phil Date: Sun, 22 Dec 2024 02:44:04 +0100 Subject: [PATCH] proxy (for dev): use server default port 5080 --- proxy.conf.json | 70 ++++++++++++++++++++++++------------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/proxy.conf.json b/proxy.conf.json index 0f8efa3..23a6b8b 100644 --- a/proxy.conf.json +++ b/proxy.conf.json @@ -1,41 +1,41 @@ [ { - "context": [ - "/static", - "/gj", - "/openapi.json", - "/docs", - "/api" - ], - "target": "http://127.0.0.1:5000", - "secure": false, - "ws": true + "context": [ + "/static", + "/gj", + "/openapi.json", + "/docs", + "/api" + ], + "target": "http://127.0.0.1:5080", + "secure": false, + "ws": true }, { - "context": [ - "/sched", - "/_sched" - ], - "target": "http://127.0.0.1:8000", - "secure": false, - "ws": true - }, + "context": [ + "/sched", + "/_sched" + ], + "target": "http://127.0.0.1:8000", + "secure": false, + "ws": true + }, { - "context": [ - "/static/tiles" - ], - "target": "/home/phil/gisaf_misc/map/tiles", - "secure": false, - "changeOrigin": true, - "pathRewrite": { - "^/static/tiles" : "" - } - }, - { - "context": [ - "/terrain" - ], - "target": "http://127.0.0.1:8899", - "secure": false + "context": [ + "/static/tiles" + ], + "target": "/home/phil/gisaf_misc/map/tiles", + "secure": false, + "changeOrigin": true, + "pathRewrite": { + "^/static/tiles": "" } -] \ No newline at end of file + }, + { + "context": [ + "/terrain" + ], + "target": "http://127.0.0.1:8899", + "secure": false + } +]