-
Notifications
You must be signed in to change notification settings - Fork 899
docs: add nginx reverse-proxy example #6185
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
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
2c7f0cf
docs: Add nginx reverse-proxy example
matifali d29da64
change nginx example to to absolute path
matifali 247a060
Merge branch 'coder:main' into rev-proxy-auto-tls
matifali 3c247a5
Update examples/web-server/nginx/README.md
matifali 8a96176
Update examples/web-server/nginx/README.md
matifali 4f25817
Update examples/web-server/nginx/README.md
matifali 099428a
Update examples/web-server/nginx/README.md
matifali d3913b3
Update examples/web-server/nginx/README.md
matifali 7f8d795
Update examples/web-server/nginx/README.md
matifali 3d306a4
Update examples/web-server/nginx/README.md
matifali 69eb387
Update examples/web-server/nginx/README.md
matifali c1111b3
Update examples/web-server/nginx/README.md
matifali af32c58
Update examples/web-server/nginx/README.md
matifali b672a1f
Update examples/web-server/nginx/README.md
matifali f080259
Update examples/web-server/nginx/README.md
matifali 838e008
Update examples/web-server/nginx/README.md
matifali 23dd1e3
Update examples/web-server/nginx/README.md
matifali 7a7e7e4
Update examples/web-server/nginx/README.md
matifali a5abc85
refactor: replaced bullets with numbered lists
matifali 3f1353e
remove the ambiguous ip addr.
matifali 8e5531d
fixed a typo
matifali 8c343f0
correctly handle the wildcard subdomain
matifali 86e7dae
simplified after testing
matifali 7d28e51
fmt: prettier formatting
matifali a642933
Adapt to the coder style guide
matifali 77149bc
fix: agent disconnection
matifali ff6fd37
Merge branch 'coder:main' into rev-proxy-auto-tls
matifali 4b5362c
Update examples/web-server/nginx/README.md
matifali 35247ed
Update docs/admin/configure.md
matifali 30163f4
Update examples/web-server/nginx/README.md
matifali 5b54368
updated with suggested changes
matifali 4d0deb6
updated with requested changes
matifali 065ed25
add reference to certbot docs for other dns providers
matifali File filter
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
docs: Add nginx reverse-proxy example
This PR adds nginx reverse-proxy example to provision coder with tls certificate using letsencrypt certbot. This will partially resolve #6086.
- Loading branch information
commit 2c7f0cfd9af7f75655001fdce1beffcabcdeae34
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,100 @@ | ||||||
# How to use nginx as a reverse-proxy with letsencrypt | ||||||
|
||||||
## Requirements | ||||||
|
||||||
1. You'll need a subdomain and the a wildcard subdomain configured that resolves to server. | ||||||
matifali marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
2. Install **nginx** (assuming you're on debian/ubuntu): | ||||||
matifali marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
- `sudo apt install nginx` | ||||||
matifali marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
3. Stop **nginx** : | ||||||
matifali marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
- `sudo service stop nginx` | ||||||
matifali marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
## Adding Coder deployment subdomain | ||||||
|
||||||
> this example assumes coder is running locally on `127.0.0.1:3000` for the subdomain `YOUR_SUBDOMAIN` e.g. `coder.example.com`. | ||||||
matifali marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
- create a new file for this app : `sudo touch /etc/nginx/sites-available/YOUR_SUBDOMAIN` | ||||||
|
||||||
- and activate this file : `sudo ln -s /etc/nginx/sites-available/YOUR_SUBDOMAIN /etc/nginx/sites-enabled/YOUR_SUBDOMAIN` | ||||||
matifali marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
## Install and configure letsencrypt certbot | ||||||
matifali marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
Install letsencrypt **certbot** : follow the instructions on [certbot website](https://certbot.eff.org/instructions?ws=other&os=pip&tab=wildcard) | ||||||
matifali marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
## Create dns provider credentials | ||||||
|
||||||
- Create an API token for the dns provider you're using : e.g cloudflare [here](https://dash.cloudflare.com/profile/api-tokens) with the following permissions : | ||||||
- Zone - DNS - Edit | ||||||
- Create a file in `.secrets/certbot/cloudflare.ini` with the following content : | ||||||
- `dns_cloudflare_api_token = YOUR_API_TOKEN` | ||||||
matifali marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
## Create the certificate | ||||||
|
||||||
- Create the wildcard certificate : | ||||||
matifali marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
```console | ||||||
sudo certbot certonly --dns-cloudflare --dns-cloudflare-credentials ~/.secrets/certbot/cloudflare.ini -d coder.example.com *.coder.example.com | ||||||
``` | ||||||
|
||||||
## Configure nginx | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
Edit the file with : `sudo nano /etc/nginx/sites-available/YOUR_SUBDOMAIN` and add the following content : | ||||||
matifali marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
```nginx | ||||||
server { | ||||||
server_name YOUR_SUBDOMAIN; | ||||||
|
||||||
# HTTP configuration | ||||||
listen 80; | ||||||
listen [::]:80; | ||||||
|
||||||
# HTTP to HTTPS | ||||||
if ($scheme != "https") { | ||||||
return 301 https://$host$request_uri; | ||||||
} # managed by Certbot | ||||||
|
||||||
# HTTPS configuration | ||||||
listen [::]:443 ssl ipv6only=on; # managed by Certbot | ||||||
listen 443 ssl; # managed by Certbot | ||||||
ssl_certificate /etc/letsencrypt/live/YOUR_SUBDOMAIN/fullchain.pem; | ||||||
ssl_certificate_key /etc/letsencrypt/live/YOUR_SUBDOMAIN/privkey.pem; | ||||||
include /etc/letsencrypt/options-ssl-nginx.conf; | ||||||
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot | ||||||
|
||||||
location / { | ||||||
proxy_pass http://127.0.0.1:3000; | ||||||
proxy_http_version 1.1; | ||||||
proxy_set_header Upgrade $http_upgrade; | ||||||
proxy_set_header Connection $connection_upgrade; | ||||||
proxy_set_header Host $server_name; | ||||||
proxy_set_header X-Real-IP $remote_addr; | ||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | ||||||
proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto; | ||||||
add_header Strict-Transport-Security "max-age=15552000; includeSubDomains" always; | ||||||
} | ||||||
} | ||||||
``` | ||||||
|
||||||
> Don't forget to change : | ||||||
> | ||||||
> - `YOUR_SUBDOMAIN` by your (sub)domain e.g. `coder.example.com` | ||||||
> - the port and ip in `proxy_pass` if applicable | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you explain here what this port and IP should be (Coder server URL)? |
||||||
|
||||||
## Automatic certificates refreshing | ||||||
matifali marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
- Create a new file in `/etc/cron.weekly` : `sudo touch /etc/cron.weekly/certbot` | ||||||
- Make it executable : `sudo chmod +x /etc/cron.weekly/certbot` | ||||||
matifali marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
- And add this code : | ||||||
|
||||||
```sh | ||||||
#!/bin/sh | ||||||
sudo certbot renew -q | ||||||
``` | ||||||
|
||||||
## Restart nginx | ||||||
matifali marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
- `sudo service nginx restart` | ||||||
|
||||||
And that's it, you should now be able to access coder via `https://YOUR_SUBDOMAIN` ! | ||||||
matifali marked this conversation as resolved.
Show resolved
Hide resolved
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.