mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
3cc77d96eb
* feat: Add tunnel by default If an access URL is not specified, we will always tunnel. This is from community-member feedback who exclaimed that it's confusing having the default for `coder server` display a warning message, and I agree. There is very little (maybe none) in running `coder server` without tunnel and without an access URL, so this seems like overall a much better UX. * Update install.sh Co-authored-by: Ben Potter <ben@coder.com> * Update docs/install/packages.md Co-authored-by: Ben Potter <ben@coder.com> * Fix reset pass test * Fix e2e test Co-authored-by: Ben Potter <ben@coder.com>
1.1 KiB
1.1 KiB
-
Download and install one of the following system packages from GitHub releases:
- .deb (Debian, Ubuntu)
- .rpm (Fedora, CentOS, RHEL, SUSE)
- .apk (Alpine)
-
Run Coder as a system service.
# Optional) Set up an access URL sudo vim /etc/coder.d/coder.env # To systemd to start Coder now and on reboot sudo systemctl enable --now coder # View the logs to see Coder's URL and ensure a successful start journalctl -u coder.service -bSet
CODER_ACCESS_URLto the external URL that users and workspaces will use to connect to Coder. This is not required if you are using the tunnel. Learn more about Coder's configuration options. -
Visit the Coder URL in the logs to set up your first account, or use the CLI:
coder login <access-url>
Restarting Coder
After updating Coder or applying configuration changes, restart the server:
sudo systemctl restart coder