Runtime environment configuration

HTTP port and context path can be easily configured in Axion.

HTTP Port

The default value for the HTTP port used to access the Axion user interface and resources is 8080. Therefore the user interface would be available at http://localhost:8080/. To change or update the port, locate the line port: 8080 in src/main/application.yml , then edit the number. For example, lets set the port value to 8081:

port: 8081

The URL will be http://localhost:8081/.

Changing the Context Path

To change or update the context path in the instance you want point to a specific webapp or component, locate the context-path: / line in the src/main/application.yml. Example for directory named axion:

context-path: /axion/

The URL will be http://localhost:8081/axion/.