-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
38 additions
and
8 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 |
---|---|---|
|
@@ -26,10 +26,10 @@ RUN set -x -o errexit \ | |
FROM registry.cloudogu.com/official/base:3.15.3-1 | ||
LABEL maintainer="[email protected]" \ | ||
NAME="official/nginx" \ | ||
VERSION="1.21.5-7" | ||
VERSION="1.21.5-8" | ||
|
||
ENV CES_CONFD_VERSION=0.7.0 \ | ||
CES_CONFD_TAR_SHA256="21568a5293208e8d806382087640418fb593bffec52587bb6669efd2ae561d41" \ | ||
ENV CES_CONFD_VERSION=0.8.0 \ | ||
CES_CONFD_TAR_SHA256="365a4033e80af6953d5b6513296a828dfd772a6640533bb51dd9abd34a1e53e8" \ | ||
WARP_MENU_VERSION=1.6.0 \ | ||
WARP_MENU_TAR_SHA256="297c910ce2287e5322e3f447408e1ccfbc835874983dbab347b21892c74c8a5f" \ | ||
CES_ABOUT_VERSION=0.2.2 \ | ||
|
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,12 @@ | ||
# Request Buffering | ||
|
||
Wenn das Buffering aktiviert ist, erhält nginx die Antwort auf eine Seitenabfrage so schnell wie möglich und speichert diese | ||
in den Buffer des Nginx-Dogus, um diese dann von dort aus Stück für Stück weiter zu geben. Das verbessert die Performance für | ||
Nutzer mit langsamen Internetverbindungen. | ||
Das Buffering kann für einzelne Dogus aktiviert/deaktiviert werden. Dafür muss ein Registry-key im folgenden Format gesetzt werden: | ||
``` | ||
/config/nginx/buffering/<doguname> = on|off | ||
``` | ||
Ist kein Wert gesetzt, ist das Buffering immer aktiviert. | ||
|
||
Nachdem der Key in der Registry gesetzt wurde, muss nginx und das Dogu, für das der Key gesetzt wurde, neu gestartet werden. |
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,12 @@ | ||
# Request Buffering | ||
|
||
When buffering is enabled, nginx receives the response to a page request as fast as possible and stores it | ||
into the buffer of the nginx-dogus, to pass it on from there bit by bit. This improves performance for | ||
users with slow internet connections. | ||
Buffering can be enabled/disabled for individual dogus. To do this, a registry key must be set in the following format: | ||
``` | ||
/config/nginx/buffering/<doguname> = on|off | ||
``` | ||
If no value is set, buffering is always enabled. | ||
|
||
After the key is set in the registry, nginx and the dogu for which the key was set must be restarted. |
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