mirror of
https://github.com/mother-of-all-self-hosting/mash-playbook
synced 2024-11-10 06:14:17 +00:00
add Stirling PDF (#260)
* add Stirling PDF * Update stirling-pdf.md --------- Co-authored-by: Slavi Pantaleev <slavi@devture.com>
This commit is contained in:
parent
db41fab2a9
commit
1871424282
5 changed files with 108 additions and 1 deletions
58
docs/services/stirling-pdf.md
Normal file
58
docs/services/stirling-pdf.md
Normal file
|
@ -0,0 +1,58 @@
|
|||
# Stirling PDF
|
||||
|
||||
Stirling PDF is an online PDF converter and editor with many functionalities. Visit the [official website](https://www.stirlingpdf.com) or [demo](https://stirlingpdf.io) to learn more.
|
||||
|
||||
## Dependencies
|
||||
|
||||
- a [Traefik](traefik.md) reverse-proxy server (optional)
|
||||
|
||||
## Configuration
|
||||
|
||||
To enable this service, add the following configuration to your `vars.yml` file and re-run the [installation](../installing.md) process:
|
||||
|
||||
```yaml
|
||||
########################################################################
|
||||
# #
|
||||
# stirling-pdf #
|
||||
# #
|
||||
########################################################################
|
||||
|
||||
stirling_pdf_enabled: true
|
||||
|
||||
stirling_pdf_hostname: stirlingpdf.example.com
|
||||
|
||||
# The path at which stirling_pdf is served.
|
||||
# This value must either be `/` or not end with a slash (e.g. `/pdf`).
|
||||
stirling_pdf_path_prefix: /
|
||||
|
||||
# Set to true to download calibre onto stirling-pdf enabling pdf to/from book and advanced html conversion | default false
|
||||
stirling_pdf_install_calibre: false
|
||||
|
||||
########################################################################
|
||||
# #
|
||||
# /stirling-pdf #
|
||||
# #
|
||||
########################################################################
|
||||
```
|
||||
|
||||
### Optional Configuration
|
||||
|
||||
You can decide if you want to configure via environment variables or a configuration file. Environment variables outrank the configuration file.
|
||||
|
||||
To set addition environment variables use `stirling_pdf_environment_variables_extensions` in your `vars.yml` file.
|
||||
To use the configuration file, use `stirling_pdf_extra_config` in your `vars.yml` file.
|
||||
|
||||
```yaml
|
||||
stirling_pdf_extra_config: |
|
||||
system:
|
||||
defaultLocale: 'de-DE'
|
||||
|
||||
# OR
|
||||
|
||||
stirling_pdf_environment_variables_extensions: |
|
||||
SYSTEM_DEFAULTLOCALE=de-DE
|
||||
```
|
||||
|
||||
Find all possible arguments in the [official documentation](https://docs.stirlingpdf.com/Advanced%20Configuration/How%20to%20add%20configurations).
|
||||
|
||||
All possible variables to configure the ansible-role can be found in its [defaults/main.yml](https://github.com/Bergruebe/ansible-role-stirling-pdf/blob/main/defaults/main.yml) file.
|
|
@ -78,6 +78,7 @@
|
|||
| [rumqttd](https://github.com/bytebeamio/rumqtt) | A high performance, embeddable [MQTT](https://en.wikipedia.org/wiki/MQTT) broker | [Link](services/rumqttd.md) |
|
||||
| [Ansible Semaphore](https://www.ansible-semaphore.com/) | A responsive web UI for running Ansible playbooks | [Link](services/semaphore.md) |
|
||||
| [Soft Serve](https://github.com/charmbracelet/soft-serve) | A tasty, self-hostable [Git](https://git-scm.com/) server for the command line | [Link](services/soft-serve.md) |
|
||||
| [Stirling PDF](https://github.com/Stirling-Tools/Stirling-PDF) | A self-hosted PDF converter | [Link](services/stirling-pdf.md) |
|
||||
| [Syncthing](https://syncthing.net/) | A continuous file synchronization program which synchronizes files between two or more computers in real time | [Link](services/syncthing.md) |
|
||||
| [Tandoor](https://docs.tandoor.dev/) | The recipe manager that allows you to manage your ever growing collection of digital recipes.| [Link](services/tandoor.md)
|
||||
| [Telegraf](https://www.influxdata.com/time-series-platform/telegraf/) | An open source server agent to help you collect metrics from your stacks, sensors, and systems. | [Link](services/telegraf.md) |
|
||||
|
|
|
@ -597,6 +597,11 @@ mash_playbook_devture_systemd_service_manager_services_list_auto_itemized:
|
|||
{{ ({'name': (soft_serve_identifier + '.service'), 'priority': 2000, 'groups': ['mash', 'soft-serve']} if soft_serve_enabled else omit) }}
|
||||
# /role-specific:soft_serve
|
||||
|
||||
# role-specific:stirling_pdf
|
||||
- |-
|
||||
{{ ({'name': (stirling_pdf_identifier + '.service'), 'priority': 2000, 'groups': ['mash', 'stirling_pdf']} if stirling_pdf_enabled else omit) }}
|
||||
# /role-specific:stirling_pdf
|
||||
|
||||
# role-specific:syncthing
|
||||
- |-
|
||||
{{ ({'name': (syncthing_identifier + '.service'), 'priority': 2000, 'groups': ['mash', 'syncthing']} if syncthing_enabled else omit) }}
|
||||
|
@ -5147,6 +5152,41 @@ soft_serve_base_path: "{{ mash_playbook_base_path }}/{{ mash_playbook_service_ba
|
|||
|
||||
|
||||
|
||||
# role-specific:stirling-pdf
|
||||
########################################################################
|
||||
# #
|
||||
# stirling-pdf #
|
||||
# #
|
||||
########################################################################
|
||||
|
||||
stirling_pdf_enabled: false
|
||||
|
||||
stirling_pdf_identifier: "{{ mash_playbook_service_identifier_prefix }}stirling-pdf"
|
||||
|
||||
stirling_pdf_uid: "{{ mash_playbook_uid }}"
|
||||
stirling_pdf_gid: "{{ mash_playbook_gid }}"
|
||||
|
||||
stirling_pdf_base_path: "{{ mash_playbook_base_path }}/{{ mash_playbook_service_base_directory_name_prefix }}stirling-pdf"
|
||||
|
||||
stirling_pdf_container_additional_networks_auto: |
|
||||
{{
|
||||
([mash_playbook_reverse_proxyable_services_additional_network] if mash_playbook_reverse_proxyable_services_additional_network else [])
|
||||
}}
|
||||
|
||||
stirling_pdf_container_labels_traefik_enabled: "{{ mash_playbook_traefik_labels_enabled }}"
|
||||
stirling_pdf_container_labels_traefik_docker_network: "{{ mash_playbook_reverse_proxyable_services_additional_network }}"
|
||||
stirling_pdf_container_labels_traefik_entrypoints: "{{ devture_traefik_entrypoint_primary }}"
|
||||
stirling_pdf_container_labels_traefik_tls_certResolver: "{{ devture_traefik_certResolver_primary }}"
|
||||
|
||||
########################################################################
|
||||
# #
|
||||
# /stirling-pdf #
|
||||
# #
|
||||
########################################################################
|
||||
# /role-specific:stirling-pdf
|
||||
|
||||
|
||||
|
||||
# role-specific:syncthing
|
||||
########################################################################
|
||||
# #
|
||||
|
|
|
@ -347,6 +347,10 @@
|
|||
version: 13440992374e0fef8f6360a0856b78b37a1fd831
|
||||
name: ssh
|
||||
activation_prefix: system_security_ssh_
|
||||
- src: git+https://github.com/Bergruebe/ansible-role-stirling-pdf.git
|
||||
version: v0.28.3-fat
|
||||
name: stirling_pdf
|
||||
activation_prefix: stirling_pdf_
|
||||
- src: git+https://github.com/mother-of-all-self-hosting/ansible-role-swap.git
|
||||
version: abfb18b6862108bbf24347500446203170324d7f
|
||||
name: swap
|
||||
|
|
|
@ -354,7 +354,7 @@
|
|||
# role-specific:radicale
|
||||
- role: galaxy/radicale
|
||||
# /role-specific:radicale
|
||||
|
||||
|
||||
# role-specific:readeck
|
||||
- role: galaxy/readeck
|
||||
# /role-specific:readeck
|
||||
|
@ -379,6 +379,10 @@
|
|||
- role: galaxy/soft_serve
|
||||
# /role-specific:soft_serve
|
||||
|
||||
# role-specific:stirling_pdf
|
||||
- role: galaxy/stirling_pdf
|
||||
# /role-specific:stirling_pdf
|
||||
|
||||
# role-specific:syncthing
|
||||
- role: galaxy/syncthing
|
||||
# /role-specific:syncthing
|
||||
|
|
Loading…
Reference in a new issue