Setting Confluence 'Server Base URL' param via command cli comand / env

Hi, dear community members!

Is there any CLI parameter or ENV that always sets the ‘Server Base URL’ parameter to ‘localhost’? We use atlas-run for our dev workflow, and ‘Server Base URL’ shows the PC name by default.

If you’re using atlas-run you should be able to atlas-run --server localhost.

You could instead add it to your app’s pom.xml to avoid having to pass it every time.

<project>
  ...
  <build>
    ...
    <plugin>
      ...
      <configuration>
        <server>localhost</server>
1 Like

Thank you @AndrewMorton ! It works perfectly for me!