# How to Change Your Quake Live Server Name (/docs/quake-live/rename-server)



import { Tab, Tabs } from 'fumadocs-ui/components/tabs';
import { Step, Steps } from 'fumadocs-ui/components/steps';

<Tabs items={['Via Startup (Recommended)', 'Via server.cfg']}>
  <Tab value="Via Startup (Recommended)">
    <Steps>
      <Step>
        Open Startup [#open-startup]

        In the [XGamingServer Panel](https://panel.xgamingserver.com), click **Startup** in the sidebar.
      </Step>

      <Step>
        Set the Hostname [#set-the-hostname]

        Find the **Hostname** field and enter your server name.
      </Step>

      <Step>
        Restart [#restart]

        Restart from **Console** to apply.
      </Step>
    </Steps>
  </Tab>

  <Tab value="Via server.cfg">
    <Steps>
      <Step>
        Stop the server [#stop-the-server]
      </Step>

      <Step>
        Open server.cfg [#open-servercfg]

        In **Files**, open `baseq3/server.cfg`.
      </Step>

      <Step>
        Set sv_hostname [#set-sv_hostname]

        ```
        set sv_hostname "My Quake Live Server"
        ```
      </Step>

      <Step>
        Save and start [#save-and-start]
      </Step>
    </Steps>
  </Tab>
</Tabs>

Color Codes [#color-codes]

Quake Live supports caret-prefixed color codes:

| Code | Color           |
| ---- | --------------- |
| `^0` | Black           |
| `^1` | Red             |
| `^2` | Green           |
| `^3` | Yellow          |
| `^4` | Blue            |
| `^5` | Cyan            |
| `^6` | Magenta         |
| `^7` | White (default) |

Example: `set sv_hostname "^1XGaming ^7Quake Live ^4Server"`

Related Guides [#related-guides]

* [Server Configuration](/docs/quake-live/server-config)
