Skip to content

fix: proper video URL in AWS quickstart doc #6238

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 16, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore: fixes video in AWS quickstart
  • Loading branch information
bpmct committed Feb 16, 2023
commit 0cfc796d22a41f81a0988120c45f65fe7a2dc1a8
4 changes: 3 additions & 1 deletion docs/quickstart/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Be sure to add a keypair so that you can connect over SSH to further [configure
After launching the instance, wait 30 seconds and navigate to the public IPv4 address. You should be redirected to a public tunnel URL.

<video playsinline loop>
<source src="https://github.com/coder/coder/blob/main/docs/images/quickstart/aws/launch.mp4" type="video/mp4">
<source src="https://github.com/coder/coder/blob/main/docs/images/quickstart/aws/launch.mp4?raw=true" type="video/mp4">
Your browser does not support the video tag.
</video>

Expand All @@ -37,6 +37,8 @@ Coder is primarily configured by server-side flags and environment variables. Gi

```sh
ssh ubuntu@<ec2-public-IPv4>
sudo vim /etc/coder.d/coder.env # edit config
sudo service coder restart # restart Coder
Comment on lines +40 to +41
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Figured I'd sneak this in too

```

## Give developers EC2 workspaces (optional)
Expand Down