Where is “Jenkins URL” configuration stored?

Viewed 30971

I'm trying to set up a non-default URL as part of a puppet script that installs Jenkins. I know how to edit the value via the web UI but I can't seem to find where the value is actually stored. I've looked through the jenkins_home folder and apache and have yet to find it.

6 Answers

The url can be found in the UI/web app under configuration > Jenkins Location; alternatively, login to your server and cat the contents at this location: var/lib/jenkins/jenkins.model.JenkinsLocationConfiguration.xml

Related