test: add clear cache implementation example in ocpp2 server
[e-mobility-charging-stations-simulator.git] / docker / config.json
index 9c4efe3a8843fa0cc52f15282bfa9aa9cd95a637..c207106a03271e955b4566ee3fa8279f8e4cf612 100644 (file)
@@ -1,10 +1,28 @@
 {
   "supervisionUrls": ["ws://server:8010/OCPP16/5c866e81a2d9593de43efdb4"],
-  "distributeStationsToTenantsEqually": true,
-  "workerProcess": "workerSet",
-  "workerPoolMinSize": 4,
-  "workerPoolMaxSize": 16,
-  "chargingStationsPerWorker": 1,
+  "supervisionUrlDistribution": "round-robin",
+  "log": {
+    "file": "/dev/stdout",
+    "errorFile": "/dev/stderr",
+    "console": false,
+    "rotate": false
+  },
+  "worker": {
+    "processType": "workerSet",
+    "elementsPerWorker": 1,
+    "poolMinSize": 4,
+    "poolMaxSize": 16
+  },
+  "uiServer": {
+    "enabled": true,
+    "type": "ws",
+    "authentication": {
+      "enabled": true,
+      "type": "protocol-basic-auth",
+      "username": "admin",
+      "password": "admin"
+    }
+  },
   "stationTemplateUrls": [
     {
       "file": "siemens.station-template.json",
       "file": "virtual-simple-atg.station-template.json",
       "numberOfStations": 10
     }
-  ],
-  "logRotate": false,
-  "logConsole": false,
-  "logFile": "/dev/stdout",
-  "logErrorFile": "/dev/stderr",
-  "logStatisticsInterval": 60
+  ]
 }