Web Configuration

web.conf configures the host and port that the Wallet API v2 web server binds to.

The shipped web.conf binds the standalone service to port 7006. Under Docker Compose, the port is set via the WALLET_API2_PORT environment variable, which also defaults to 7006.

File Location

waltid-services/waltid-wallet-api2/config/web.conf

Fields

webHost

String — Network interface to bind to.

Defaults to 0.0.0.0.

webPort

Int — Port the API service listens on.

The standalone service uses 7006 by default. This is the port you send API requests to and open Swagger on.

# web.conf
webHost = "0.0.0.0"
webPort = 7006

This is separate from publicBaseUrl in wallet-service.conf, which is the wallet's public/front-end-facing base URL and need not use the same port.

Last updated on July 28, 2026