Skip to content

Instantly share code, notes, and snippets.

@khan-rizwan
Created June 27, 2020 15:38
Show Gist options
  • Save khan-rizwan/3f65cd0cb97c165e3339a3bb4683cb1f to your computer and use it in GitHub Desktop.
Save khan-rizwan/3f65cd0cb97c165e3339a3bb4683cb1f to your computer and use it in GitHub Desktop.
nginx location block for hosting gitbooks on your domain custom path
location /docs/ {
proxy_pass http://{author}.gitbook.io/{book}/;
sub_filter_once off;
sub_filter_types *;
sub_filter "/{book}/" "/docs/";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment