Skip to content

Commit

Permalink
Add useful info for the problematic current WebUI implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
uhurusurfa committed Oct 1, 2024
1 parent b548804 commit 69b77cb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions WebUI/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down

0 comments on commit 69b77cb

Please sign in to comment.