-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#2627 adding documentation. updated order of pages, corrected typos (#49
- Loading branch information
Showing
11 changed files
with
143 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
sidebar_position: 9 | ||
--- | ||
|
||
# Database Backups | ||
|
||
## Functionality Overview | ||
|
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 |
---|---|---|
@@ -0,0 +1,123 @@ | ||
--- | ||
sidebar_position: 8 | ||
id: External Database | ||
title: External Database | ||
--- | ||
import Tabs from '@theme/Tabs'; | ||
import TabItem from '@theme/TabItem'; | ||
|
||
|
||
# Using an External Database | ||
|
||
It is possible to use your own external database with Stirling PDF rather than the default H2 database if you wish. | ||
PostgreSQL is currently the only supported variant, others will be added on request. | ||
|
||
### Setting Up External Database Configuration | ||
You can configure the new `Datasource` property in your `settings.yml` to connect to your external database: | ||
|
||
> #### ⚠️ Note | ||
> _To use the external database feature, you will need to have a valid enterprise license and set the environment variable `DOCKER_ENABLE_SECURITY` to `true`._ | ||
<Tabs groupId="external-db-config"> | ||
<TabItem value="settings" label="Settings File"> | ||
|
||
```yaml | ||
datasource: | ||
enableCustomDatabase: false | ||
customDatabaseUrl: jdbc:postgresql://localhost:5432/postgres | ||
username: postgres | ||
password: postgres | ||
type: postgresql | ||
hostName: localhost | ||
port: 5432 | ||
name: postgres | ||
``` | ||
- `enableCustomDatabase`: Set this property to `true` to enable use of the custom database **Note: An enterprise license to use this feature** | ||
- `customDatabaseUrl`: Enter the database connection url for the database here. **Note: If you set the `customDatabaseUrl` you do not need to set the type, hostName, port and name, they will all be automatically derived from the url.** | ||
- `username`: The username for the database | ||
- `password`: The password for the database | ||
|
||
If you would like more fine-grained control of the database connection, you can also use the following properties: | ||
|
||
#### Fine-grained Database Configuration | ||
- `type`: The database type. Available options are `h2` and `postgresql` | ||
- `hostName`: The host name of the database connection url (e.g. 'localhost') | ||
- `port`: The port number of the database connection url (e.g. 8080) | ||
- `name`: The name of the custom database. This should match the name you have set for your database | ||
|
||
</TabItem> | ||
<TabItem value="docker" label="Docker Compose"> | ||
|
||
```yaml | ||
services: | ||
db: | ||
image: 'postgres:17.2-alpine' | ||
container_name: db | ||
ports: | ||
- "5432:5432" | ||
environment: | ||
POSTGRES_DB: "stirling_pdf" | ||
POSTGRES_USER: "admin" | ||
POSTGRES_PASSWORD: "stirling" | ||
``` | ||
|
||
- `container_name`: This is the name of your database container. This should match the name of the container under `services` as this is what Docker will use to refer to your database | ||
- `ports`: Specify the port number for your database. The number on the left is the port number the container will access the database internally. The number on the right is the port number the Stirling PDF app will use to connect to the database externally. Ensure this matches the port number in the connection url for your database otherwise the app will not be able to access it. | ||
- `POSTGRES_DB`: An environment variable for the database container. Specify the name of the custom database here | ||
- `POSTGRES_USER`: An environment variable for the database container. Specify the username for the database | ||
- `POSTGRES_PASSWORD`: An environment variable for the database container. Specify the password for the database | ||
|
||
You will also need to update the Docker configuration in your app in order to connect to the database: | ||
|
||
```yaml | ||
services: | ||
stirling-pdf: | ||
depends_on: | ||
- db | ||
environment: | ||
DOCKER_ENABLE_SECURITY: "true" | ||
SYSTEM_DATASOURCE_ENABLECUSTOMDATABASE: "true" | ||
SYSTEM_DATASOURCE_CUSTOMDATABASEURL: "jdbc:postgresql://db:5432/stirling_pdf" | ||
SYSTEM_DATASOURCE_USERNAME: "admin" | ||
SYSTEM_DATASOURCE_PASSWORD: "stirling" | ||
# further configuration | ||
``` | ||
|
||
- `depends_on`: This specifies any services that your app will need in order to run. Ensure the name matches the container name for your database | ||
- `DOCKER_ENABLE_SECURITY`: Set this to `true` to enable security features | ||
- `SYSTEM_DATASOURCE_ENABLECUSTOMDATABASE`: An environment variable to connect to the database container. Set this to `true` to enable use of the external database | ||
- `SYSTEM_DATASOURCE_CUSTOMDATABASEURL`: An environment variable to connect to the database container. Set the connection url for the database here. **Note: If you set this url you do not need to set the type, hostName, port and name (namely `SYSTEM_DATASOURCETYPE`, `SYSTEM_DATASOURCEHOSTNAME`, `SYSTEM_DATASOURCEPORT`, `SYSTEM_DATASOURCENAME`), they will all be automatically derived from the url.** | ||
- `SYSTEM_DATASOURCE_USERNAME`: An environment variable to connect to the database container. Set the username for the database. Ensure this matches the corresponding property in your database container | ||
- `SYSTEM_DATASOURCE_PASSWORD`: An environment variable to connect to the database container. Set the password for the database. Ensure this matches the corresponding property in your database container | ||
|
||
Below is an example of what your configuration should look like after configuring the custom database: | ||
|
||
```yaml | ||
services: | ||
stirling-pdf: | ||
depends_on: | ||
- db | ||
environment: | ||
DOCKER_ENABLE_SECURITY: "true" | ||
SYSTEM_DATASOURCE_ENABLECUSTOMDATABASE: "true" | ||
SYSTEM_DATASOURCE_CUSTOMDATABASEURL: "jdbc:postgresql://db:5432/stirling_pdf" | ||
SYSTEM_DATASOURCE_USERNAME: "admin" | ||
SYSTEM_DATASOURCE_PASSWORD: "stirling" | ||
# further configuration | ||
db: | ||
image: 'postgres:17.2-alpine' | ||
container_name: db | ||
ports: | ||
- "5432:5432" | ||
environment: | ||
POSTGRES_DB: "stirling_pdf" | ||
POSTGRES_USER: "admin" | ||
POSTGRES_PASSWORD: "stirling" | ||
``` | ||
|
||
</TabItem> | ||
</Tabs> | ||
|
||
*Example configuration can be found in [exampleYmlFiles/docker-compose-latest-fat-security-postgres.yml](https://github.com/Stirling-Tools/Stirling-PDF/blob/428b4238e3a7280d71697d994a66174a250387a7/exampleYmlFiles/docker-compose-latest-fat-security-postgres.yml)* |
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
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,5 +1,5 @@ | ||
--- | ||
sidebar_position: 3 | ||
sidebar_position: 10 | ||
id: Pipeline | ||
title: Pipeline Automation | ||
--- | ||
|
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,5 +1,5 @@ | ||
--- | ||
sidebar_position: 4 | ||
sidebar_position: 11 | ||
--- | ||
|
||
# Visual Sign with Custom File Storage | ||
|
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,3 +1,7 @@ | ||
--- | ||
sidebar_position: 3 | ||
--- | ||
|
||
import Tabs from '@theme/Tabs'; | ||
import TabItem from '@theme/TabItem'; | ||
|
||
|
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