diff --git a/README.md b/README.md index dbde6d6a..4527a911 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,7 @@ $ docker build -t openas2:latest . ``` Run the OpenAS2 server, with its network set to "host", so that the WebUI can access the server. +NOTE: Some users have reported that using --net=host does not work for them and removing it solves the problem.. ```console $ docker run -it --rm --net=host -p 4080:10080 -p 4081:10081 -p 8443:8080 -v ${PWD}/config:/opt/openas2/config -v ${PWD}/data:/opt/openas2/data openas2:latest diff --git a/WebUI/README.md b/WebUI/README.md index 9afcde38..f2fc8f03 100644 --- a/WebUI/README.md +++ b/WebUI/README.md @@ -29,6 +29,11 @@ The OpenAS2 public REST api Endpoint needs to be configured with the VUE_APP_RES ``` VUE_APP_RESTAPI_URL=https://openas2/rest/api ``` +### OpenAS2 Configuration + 1. Enable the REST command processor config/config.xml: + restapi.command.processor.enabled="true" + 1. Set the listening port for the command procesor to something usable on your server if the feault is not usable in config/config.xml: + restapi.command.processor.baseuri="http://0.0.0.0:8080" ### Compiles and hot-reloads for development ```