From d30e7fd8c62732a79bae8c42292526d408cd682c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Jan 2025 21:12:22 +0000 Subject: [PATCH] deploy: e86fe9e8520c4e96a7703418b3b7015c35ef01b9 --- 404.html | 2 +- API/index.html | 2 +- Advanced Configuration/DATABASE/index.html | 2 +- .../Endpoint or Feature Customisation/index.html | 2 +- Advanced Configuration/External Database/index.html | 2 +- Advanced Configuration/Folder Scanning/index.html | 2 +- Advanced Configuration/How to add configurations/index.html | 6 +++--- Advanced Configuration/OCR/index.html | 2 +- Advanced Configuration/Other Customisations/index.html | 2 +- Advanced Configuration/Pipeline/index.html | 2 +- Advanced Configuration/Sign with custom files/index.html | 2 +- .../Single Sign-On Configuration/index.html | 2 +- Advanced Configuration/System and Security/index.html | 2 +- Advanced Configuration/UI Customisation/index.html | 2 +- Contribute/Code/index.html | 2 +- Contribute/Language/index.html | 2 +- Enterprise Edition/index.html | 2 +- FAQ/index.html | 2 +- Functionality/Convert/index.html | 2 +- Functionality/Features Pipeline/index.html | 2 +- Functionality/Miscellaneous/index.html | 2 +- Functionality/Page-Operations/index.html | 2 +- Functionality/Page-Operations/redact/index.html | 2 +- Functionality/Security/index.html | 2 +- Functionality/The Technologies/index.html | 2 +- Installation/Docker Install/index.html | 2 +- Installation/Mac Installation/index.html | 2 +- Installation/Path Structure/index.html | 2 +- Installation/Unix Installation/index.html | 2 +- Installation/Versions/index.html | 2 +- Installation/Windows Installation/index.html | 2 +- assets/js/0656e72b.0cba503e.js | 1 + assets/js/0656e72b.f1bba526.js | 1 - .../{runtime~main.610120df.js => runtime~main.9192af7c.js} | 2 +- category/functionality/index.html | 2 +- index.html | 2 +- search/index.html | 2 +- tags/api/index.html | 2 +- tags/enterprise/index.html | 2 +- tags/index.html | 2 +- tags/premium/index.html | 2 +- tags/pro/index.html | 2 +- 42 files changed, 43 insertions(+), 43 deletions(-) create mode 100644 assets/js/0656e72b.0cba503e.js delete mode 100644 assets/js/0656e72b.f1bba526.js rename assets/js/{runtime~main.610120df.js => runtime~main.9192af7c.js} (98%) diff --git a/404.html b/404.html index f2bfaf0..819b8a8 100644 --- a/404.html +++ b/404.html @@ -7,7 +7,7 @@ - +
diff --git a/API/index.html b/API/index.html index b27d0d1..aed502b 100644 --- a/API/index.html +++ b/API/index.html @@ -7,7 +7,7 @@ - + diff --git a/Advanced Configuration/DATABASE/index.html b/Advanced Configuration/DATABASE/index.html index 6e234eb..b4bba9b 100644 --- a/Advanced Configuration/DATABASE/index.html +++ b/Advanced Configuration/DATABASE/index.html @@ -7,7 +7,7 @@ - + diff --git a/Advanced Configuration/Endpoint or Feature Customisation/index.html b/Advanced Configuration/Endpoint or Feature Customisation/index.html index ce5a5da..821dbed 100644 --- a/Advanced Configuration/Endpoint or Feature Customisation/index.html +++ b/Advanced Configuration/Endpoint or Feature Customisation/index.html @@ -7,7 +7,7 @@ - + diff --git a/Advanced Configuration/External Database/index.html b/Advanced Configuration/External Database/index.html index e2299bc..d50046c 100644 --- a/Advanced Configuration/External Database/index.html +++ b/Advanced Configuration/External Database/index.html @@ -7,7 +7,7 @@ - + diff --git a/Advanced Configuration/Folder Scanning/index.html b/Advanced Configuration/Folder Scanning/index.html index e3f9e16..f5fc4c7 100644 --- a/Advanced Configuration/Folder Scanning/index.html +++ b/Advanced Configuration/Folder Scanning/index.html @@ -7,7 +7,7 @@ - + diff --git a/Advanced Configuration/How to add configurations/index.html b/Advanced Configuration/How to add configurations/index.html index ac92a81..790da12 100644 --- a/Advanced Configuration/How to add configurations/index.html +++ b/Advanced Configuration/How to add configurations/index.html @@ -7,7 +7,7 @@ - + @@ -22,8 +22,8 @@ This file is located in the/configs
directory and follows standard YAML formatting
Environment variables are also supported and would override the settings file For example in the settings.yml you have
-system:
enableLogin: 'true'
To have this via an environment variable you would have SYSTEM_ENABLELOGIN
security:
enableLogin: 'true'
To have this via an environment variable you would have SECURITY_ENABLELOGIN
The Current list of settings is
security:
enableLogin: false # set to 'true' to enable login
csrfDisabled: true # Set to 'true' to disable CSRF protection (not recommended for production)
loginAttemptCount: 5 # lock user account after 5 tries
loginResetTimeMinutes: 120 # lock account for 2 hours after x attempts
# initialLogin:
# username: "admin" # Initial username for the first login
# password: "stirling" # Initial password for the first login
# oauth2:
# enabled: false # set to 'true' to enable login (Note: enableLogin must also be 'true' for this to work)
# issuer: "" # set to any provider that supports OpenID Connect Discovery (/.well-known/openid-configuration) end-point
# clientId: "" # Client ID from your provider
# clientSecret: "" # Client Secret from your provider
# autoCreateUser: false # set to 'true' to allow auto-creation of non-existing users
# useAsUsername: "email" # Default is 'email'; custom fields can be used as the username
# scopes: "openid, profile, email" # Specify the scopes for which the application will request permissions
# provider: "google" # Set this to your OAuth provider's name, e.g., 'google' or 'keycloak'
# client:
# google:
# clientId: "" # Client ID for Google OAuth2
# clientSecret: "" # Client Secret for Google OAuth2
# scopes: "https://www.googleapis.com/auth/userinfo.email, https://www.googleapis.com/auth/userinfo.profile" # Scopes for Google OAuth2
# useAsUsername: "email" # Field to use as the username for Google OAuth2
# github:
# clientId: "" # Client ID for GitHub OAuth2
# clientSecret: "" # Client Secret for GitHub OAuth2
# scopes: "read:user" # Scope for GitHub OAuth2
# useAsUsername: "login" # Field to use as the username for GitHub OAuth2
# keycloak:
# issuer: "http://192.168.0.123:8888/realms/stirling-pdf" # URL of the Keycloak realm's OpenID Connect Discovery endpoint
# clientId: "stirling-pdf" # Client ID for Keycloak OAuth2
# clientSecret: "" # Client Secret for Keycloak OAuth2
# scopes: "openid, profile, email" # Scopes for Keycloak OAuth2
# useAsUsername: "email" # Field to use as the username for Keycloak OAuth2
system:
defaultLocale: 'en-US' # Set the default language (e.g. 'de-DE', 'fr-FR', etc)
googlevisibility: false # 'true' to allow Google visibility (via robots.txt), 'false' to disallow
enableAlphaFunctionality: false # Set to enable functionality which might need more testing before it fully goes live (This feature might make no changes)
showUpdate: true # see when a new update is available
showUpdateOnlyAdmin: false # Only admins can see when a new update is available, depending on showUpdate it must be set to 'true'
customHTMLFiles: false # enable to have files placed in /customFiles/templates override the existing template html files
ui:
appName: null # Application's visible name
homeDescription: null # Short description or tagline shown on homepage.
appNameNavbar: null # Name displayed on the navigation bar
endpoints:
toRemove: [] # List endpoints to disable (e.g. ['img-to-pdf', 'remove-pages'])
groupsToRemove: [] # List groups to disable (e.g. ['LibreOffice'])
metrics:
enabled: true # 'true' to enable Info APIs (`/api/*`) endpoints, 'false' to disable
There is an additional config file /configs/custom_settings.yml
were users familiar with java and spring application.properties can input their own settings on-top of Stirling-PDFs existing ones