Merge pull request #172 from korzq/patch-1

Add nginx reverse proxy guide for selfhosted
This commit is contained in:
Anmol Sethi 2019-03-10 11:36:56 -04:00 committed by GitHub
commit 8527d10033
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 0 deletions

View File

@ -74,5 +74,20 @@ OPTIONS
> To ensure the connection between you and your server is encrypted view our guide on [securing your setup](../security/ssl.md) > To ensure the connection between you and your server is encrypted view our guide on [securing your setup](../security/ssl.md)
### Nginx Reverse Proxy
Nginx is for reverse proxy. Here is a example virtual host that works with code-server. Please also pass --allow-http. You can also use certbot by EFF to get a ssl certificates for free.
```
server {
listen 80;
listen [::]:80;
server_name code.example.com code.example.org;
location / {
proxy_pass http://localhost:8443/;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection upgrade;
}
}
```
### Help ### Help
Use `code-server -h` or `code-server --help` to view the usage for the cli. This is also shown at the beginning of this section. Use `code-server -h` or `code-server --help` to view the usage for the cli. This is also shown at the beginning of this section.