|
| 1 | +# Appearance (enterprise) (premium) |
| 2 | + |
| 3 | +Customize the look of your Coder deployment to meet your enterprise |
| 4 | +requirements. |
| 5 | + |
| 6 | +You can access the Appearance settings by navigating to |
| 7 | +`Deployment > Appearance`. |
| 8 | + |
| 9 | + |
| 10 | + |
| 11 | +## Application Name |
| 12 | + |
| 13 | +Specify a custom application name to be displayed on the login page. The default |
| 14 | +is Coder. |
| 15 | + |
| 16 | +## Logo URL |
| 17 | + |
| 18 | +Specify a custom URL for your enterprise's logo to be displayed on the sign in |
| 19 | +page and in the top left corner of the dashboard. The default is the Coder logo. |
| 20 | + |
| 21 | +## Announcement Banners |
| 22 | + |
| 23 | + |
| 24 | + |
| 25 | +Announcement Banners let admins post important messages to all site users. Only |
| 26 | +Site Owners may set the announcement banners. |
| 27 | + |
| 28 | +Example: Use multiple announcement banners for concurrent deployment-wide |
| 29 | +updates, such as maintenance or new feature rollout. |
| 30 | + |
| 31 | + |
| 32 | + |
| 33 | +Example: Adhere to government network classification requirements and notify |
| 34 | +users of which network their Coder deployment is on. |
| 35 | + |
| 36 | + |
| 37 | + |
| 38 | +## OIDC Login Button Customization |
| 39 | + |
| 40 | +[Use environment variables to customize](../users/oidc-auth.md#oidc-login-customization) |
| 41 | +the text and icon on the OIDC button on the Sign In page. |
| 42 | + |
| 43 | +## Support Links |
| 44 | + |
| 45 | +Support links let admins adjust the user dropdown menu to include links |
| 46 | +referring to internal company resources. The menu section replaces the original |
| 47 | +menu positions: documentation, report a bug to GitHub, or join the Discord |
| 48 | +server. |
| 49 | + |
| 50 | + |
| 51 | + |
| 52 | +### Icons |
| 53 | + |
| 54 | +The link icons are optional, and can be set to any url or |
| 55 | +[builtin icon](../templates/extending-templates/icons.md#bundled-icons), |
| 56 | +additionally `bug`, `chat`, and `docs` are available as three special icons. |
| 57 | + |
| 58 | +### Configuration |
| 59 | + |
| 60 | +#### Kubernetes |
| 61 | + |
| 62 | +To configure support links in your Coder Kubernetes deployment, update your Helm |
| 63 | +chart values as follows: |
| 64 | + |
| 65 | +```yaml |
| 66 | +coder: |
| 67 | + env: |
| 68 | + - name: CODER_SUPPORT_LINKS |
| 69 | + value: > |
| 70 | + [{"name": "Hello GitHub", "target": "https://github.com/coder/coder", |
| 71 | + "icon": "bug"}, |
| 72 | + {"name": "Hello Slack", "target": |
| 73 | + "https://codercom.slack.com/archives/C014JH42DBJ", "icon": |
| 74 | + "/icon/slack.svg"}, |
| 75 | + {"name": "Hello Discord", "target": "https://discord.gg/coder", "icon": |
| 76 | + "/icon/discord.svg"}, |
| 77 | + {"name": "Hello Foobar", "target": "https://foo.com/bar", "icon": |
| 78 | + "/emojis/1f3e1.png"}] |
| 79 | +``` |
| 80 | +
|
| 81 | +#### System package |
| 82 | +
|
| 83 | +if running as a system service, set an environment variable |
| 84 | +`CODER_SUPPORT_LINKS` in `/etc/coder.d/coder.env` as follows, |
| 85 | + |
| 86 | +```env |
| 87 | +CODER_SUPPORT_LINKS='[{"name": "Hello GitHub", "target": "https://github.com/coder/coder", "icon": "bug"}, {"name": "Hello Slack", "target": "https://codercom.slack.com/archives/C014JH42DBJ", "icon": "https://raw.githubusercontent.com/coder/coder/main/site/static/icon/slack.svg"}, {"name": "Hello Discord", "target": "https://discord.gg/coder", "icon": "https://raw.githubusercontent.com/coder/coder/main/site/static/icon/discord.svg"}, {"name": "Hello Foobar", "target": "https://discord.gg/coder", "icon": "/emojis/1f3e1.png"}]' |
| 88 | +``` |
| 89 | + |
| 90 | +For CLI, use, |
| 91 | + |
| 92 | +```shell |
| 93 | +export CODER_SUPPORT_LINKS='[{"name": "Hello GitHub", "target": "https://github.com/coder/coder", "icon": "bug"}, {"name": "Hello Slack", "target": "https://codercom.slack.com/archives/C014JH42DBJ", "icon": "https://raw.githubusercontent.com/coder/coder/main/site/static/icon/slack.svg"}, {"name": "Hello Discord", "target": "https://discord.gg/coder", "icon": "https://raw.githubusercontent.com/coder/coder/main/site/static/icon/discord.svg"}, {"name": "Hello Foobar", "target": "https://discord.gg/coder", "icon": "/emojis/1f3e1.png"}]' |
| 94 | +coder-server |
| 95 | +``` |
0 commit comments