coder/docs/admin/appearance.md

2.0 KiB

Appearance (enterprise)

Customize the look of your Coder deployment to meet your enterprise requirements.

You can access the Appearance settings by navigating to Deployment > Appearance.

application name and logo url

Application Name

Specify a custom application name to be displayed on the login page. The default is Coder.

Logo URL

Specify a custom URL for your enterprise's logo to be displayed in the top left corner of the dashboard. The default is the Coder logo.

Service Banner

service banner

A Service Banner lets admins post important messages to all site users. Only Site Owners may set the service banner.

Example: Notify users of scheduled maintenance of the Coder deployment.

service banner maintenance

Example: Adhere to government network classification requirements and notify users of which network their Coder deployment is on.

service banner secret

OIDC Login Button Customization

Use environment variables to customize the text and icon on the OIDC button on the Sign In page.

Support links let admins adjust the user dropdown menu to include links referring to internal company resources. The menu section replaces the original menu positions: documentation, report a bug to GitHub, or join the Discord server.

support links

Custom links can be set in the deployment configuration using the -c <yamlFile> flag to coder server.

supportLinks:
  - name: "On-call 🔥"
    target: "http://on-call.example.internal"
    icon: "bug"
  - name: "😉 Getting started with Go!"
    target: "https://go.dev/"
  - name: "Community"
    target: "https://github.com/coder/coder"
    icon: "chat"

Icons

The link icons are optional, and limited to: bug, chat, and docs.

Up next