Added changes to align with v21.12.4

This commit is contained in:
Dan Brown 2022-02-01 12:10:21 +00:00
commit 2e772209ff
Signed by: danb
GPG key ID: 46D9F943C24A2EF9

View file

@ -22,6 +22,9 @@ php artisan bookstack:create-admin
# Non-interactive usage example
php artisan bookstack:create-admin --email="barry@example.com" --name="Bazza" --password="hunter2"
# Defining "External Authentication ID" instead of password for LDAP/SAML2/OIDC environments
php artisan bookstack:create-admin --email="barry.booker@example.com" --name="Bazza" --external-auth-id="bbooker"
```
#### Copy Shelf Permission

View file

@ -1,6 +1,6 @@
+++
title = "PDF Rendering"
description = "Using WKHTMLtoPDF to generate PDF's for better rendering"
description = "Options to configure PDF rendering within BookStack"
date = "2017-01-22"
type = "admin-doc"
+++
@ -27,3 +27,13 @@ You should only enable the below option in environments where only trusted users
```bash
ALLOW_UNTRUSTED_SERVER_FETCHING=true
```
### Export Page Size
By default PDF exports are generated at an A4 size. If you'd prefer exports to be generated at "US Letter" standard sizes
you can specify this within your `.env` like so:
```bash
# US Letter
EXPORT_PAGE_SIZE=letter
```