mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
73 lines
2.0 KiB
Markdown
73 lines
2.0 KiB
Markdown
# 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
|
|
|
|
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 on the sign in
|
|
page and in the top left corner of the dashboard. The default is the Coder logo.
|
|
|
|
## 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.
|
|
|
|

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

|
|
|
|
## OIDC Login Button Customization
|
|
|
|
[Use environment variables to customize](../auth#oidc-login-customization) the
|
|
text and icon on the OIDC button on the Sign In page.
|
|
|
|
## Support Links
|
|
|
|
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.
|
|
|
|

|
|
|
|
Custom links can be set in the deployment configuration using the
|
|
`-c <yamlFile>` flag to `coder server`.
|
|
|
|
```yaml
|
|
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
|
|
|
|
- [Enterprise](../enterprise.md)
|