With jetty12, vnu webapp is reachable at: http://localhost:8080/vnu On some architectures (eg. i386, loong64), vnu needs the JVM to be invoked with the following JVM option "-Xss%SIZE%k". Where %SIZE% is - 2048 on i386 - 3072 on loong64 This is enabled on these architecture with the following content in file /etc/jetty12/start.d/vnu-xss-${ARCH}.ini --exec -Xss2048k You may need to restart jetty so that it is considered. Alternatively you could set the JAVA_OPTIONS environment variable this way. echo -e '[Service]\nEnvironment="JAVA_OPTIONS=-Xss2048k"' | \ systemctl edit --drop-in vnu-jetty12.conf --stdin jetty12.service Then restart the service: systemctl restart jetty12 To allow testing a URL on localhost (or 127.0.0.1 or alike), add this to /etc/jetty12/start.d/vnu-allow-forbidden-hosts.ini --exec -Dnu.validator.servlet.allow-forbidden-hosts=true