-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from YesWiki/longer-timeouts
feat: add default config values for HeadlessChromium, and a very high…
- Loading branch information
Showing
3 changed files
with
19 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
@@ -1,31 +1,40 @@ | ||
parameters: | ||
htmltopdf_path: '/usr/bin/chromium' # MacOs: /Applications/Chromium.app/Contents/MacOS/Chromium | ||
htmltopdf_path: '/usr/bin/chromium' # MacOs: /Applications/Chromium.app/Contents/MacOS/Chromium | ||
htmltopdf_service_url: '' # Should be a complete url like https://example.org/yeswiki/?PagePrincipale/pdf | ||
# Advanced | ||
# duration before considering the pageload completed (60000ms = 1 minute) | ||
page_load_timeout: 60000 | ||
# for edit config action | ||
publication_editable_config_params: | ||
- 'htmltopdf_service_url' | ||
|
||
# Advanced Configuration | ||
# Has to comply with HeadlessChromium::createBrowser() options | ||
# see https://github.com/chrome-php/headless-chromium-php#options | ||
# See https://github.com/chrome-php/headless-chromium-php#options | ||
htmltopdf_options: | ||
windowSize: [1440, 780] | ||
noSandbox: true | ||
headless: true | ||
userAgent: 'YesWiki/4.0' | ||
# maximum time to wait for the browser to start, before navigating to a page | ||
startupTimeout: 30 | ||
# maximum time in ms to wait for synchronous messages to send to the browser | ||
sendSyncDefaultTimeout: 10000 | ||
customFlags: | ||
- '--crash-dumps-dir=/tmp' | ||
# uncomment to view browser logs in PHP/Apache logs | ||
# debugLogger: 'php://stdout' | ||
|
||
# Advanced Configuration | ||
# if you want to propose this website as a service for other domains | ||
htmltopdf_service_authorized_domains: | ||
# - 'example.org' | ||
# - 'another-one.com' | ||
|
||
# ADVANCED SETUP | ||
# Advanced Configuration | ||
# Configure this when the HTTP server does not have access to the YesWiki via its public URL. | ||
# | ||
# Eg, if Docker/base_url is https://example.com/? and Apache runs as http://localhost:8000, | ||
# … then `htmltopdf_base_url` value should be `http://localhost:8000/?`. | ||
# Use cases: reverse-proxy, within a YesWiki Docker container. | ||
htmltopdf_base_url: ~ | ||
#htmltopdf_base_url: http://localhost:8000/? | ||
# | ||
# for edit config action | ||
publication_editable_config_params: | ||
- 'htmltopdf_service_url' |
This file contains 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