Merge pull request #3217 from catthehacker/caddy-sub-path

docs(guide.md): add `caddy` example for serving from sub-path
This commit is contained in:
repo-ranger[bot] 2021-04-26 18:04:55 +00:00 committed by GitHub
commit a872850295
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -195,6 +195,15 @@ mydomain.com
reverse_proxy 127.0.0.1:8080 reverse_proxy 127.0.0.1:8080
``` ```
If you want to serve `code-server` from a sub-path, below is sample configuration for Caddy:
```
mydomain.com/code/* {
uri strip_prefix /code
reverse_proxy 127.0.0.1:8080
}
```
Remember to replace `mydomain.com` with your domain name! Remember to replace `mydomain.com` with your domain name!
5. Reload caddy with: 5. Reload caddy with: