Skip to content

Commit a9d8eff

Browse files
authored
Merge pull request #394 from itk-dev/feature/nginx-timeout
Made NGINX_FASTCGI_READ_TIMEOUT have effect
2 parents 960c348 + 8fda7bc commit a9d8eff

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

.docker/templates/default.conf.template

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ server {
55
root ${NGINX_WEB_ROOT};
66

77
client_max_body_size ${NGINX_MAX_BODY_SIZE};
8+
fastcgi_read_timeout ${NGINX_FASTCGI_READ_TIMEOUT};
89

910
set_real_ip_from 172.16.0.0/16;
1011
set_real_ip_from 192.168.39.0/24;

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ Versioning](https://semver.org/spec/v2.0.0.html).
88

99
## [Unreleased]
1010

11+
- [PR-394](https://github.com/itk-dev/os2loop/pull/394)
12+
Made `NGINX_FASTCGI_READ_TIMEOUT` have effect
13+
1114
## [1.3.3] - 2026-05-20
1215

1316
- [PR-393](https://github.com/itk-dev/os2loop/pull/393)

web/profiles/custom/os2loop/themes/os2loop_theme/templates/navigation/content-tasks.html.twig

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@
1111
<div class="icon-container">
1212
{% if node.id|default(false) %}
1313
{% if is_granted('entity print access bundle ' ~ node.bundle) %}
14-
<div class="icon print" data-toggle="tooltip" title="{{ 'Print document (PDF)'|t }}">
15-
<a aria-label="{{ 'Print document (PDF)'|t }}" href="{{ path('entity_print.view', {export_type: 'pdf', entity_type: 'node', entity_id: node.id}) }}">
16-
<span class="visually-hidden">{{ 'Print document (PDF)'|t }}</span>
14+
{% set print_label = node.bundle == 'os2loop_documents_collection' ? 'Print document collection (PDF)'|t : 'Print document (PDF)'|t %}
15+
<div class="icon print" data-toggle="tooltip" title="{{ print_label }}">
16+
<a aria-label="{{ print_label }}" href="{{ path('entity_print.view', {export_type: 'pdf', entity_type: 'node', entity_id: node.id}) }}">
17+
<span class="visually-hidden">{{ print_label }}</span>
1718
</a>
1819
</div>
1920
{% endif %}

web/profiles/custom/os2loop/translations/translations.da.po

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -765,6 +765,9 @@ msgstr "Dansk"
765765
msgid "Print document (PDF)"
766766
msgstr "Udskriv dokument (PDF)"
767767

768+
msgid "Print document collection (PDF)"
769+
msgstr "Udskriv dokumentsamling (PDF)"
770+
768771
msgid "Contact editoral staff"
769772
msgstr "Skriv til redaktionen"
770773

0 commit comments

Comments
 (0)