mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2025-02-15 01:09:50 +01:00
Migrate to PHP-FPM for all Web images
This commit is contained in:
parent
63401c88b9
commit
0f302df788
@ -56,7 +56,7 @@ TraceEnable Off
|
|||||||
AddDefaultCharset UTF-8
|
AddDefaultCharset UTF-8
|
||||||
|
|
||||||
<IfModule reqtimeout_module>
|
<IfModule reqtimeout_module>
|
||||||
RequestReadTimeout handshake=0 header=20-40,MinRate=500 body=20,MinRate=500
|
RequestReadTimeout header=20-40,MinRate=500 body=20,MinRate=500
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
|
||||||
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
|
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
|
||||||
|
@ -56,7 +56,7 @@ TraceEnable Off
|
|||||||
AddDefaultCharset UTF-8
|
AddDefaultCharset UTF-8
|
||||||
|
|
||||||
<IfModule reqtimeout_module>
|
<IfModule reqtimeout_module>
|
||||||
RequestReadTimeout handshake=0 header=20-40,MinRate=500 body=20,MinRate=500
|
RequestReadTimeout header=20-40,MinRate=500 body=20,MinRate=500
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
|
||||||
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
|
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
|
||||||
|
@ -56,7 +56,7 @@ TraceEnable Off
|
|||||||
AddDefaultCharset UTF-8
|
AddDefaultCharset UTF-8
|
||||||
|
|
||||||
<IfModule reqtimeout_module>
|
<IfModule reqtimeout_module>
|
||||||
RequestReadTimeout handshake=0 header=20-40,MinRate=500 body=20,MinRate=500
|
RequestReadTimeout header=20-40,MinRate=500 body=20,MinRate=500
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
|
||||||
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
|
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
|
||||||
|
@ -56,7 +56,7 @@ TraceEnable Off
|
|||||||
AddDefaultCharset UTF-8
|
AddDefaultCharset UTF-8
|
||||||
|
|
||||||
<IfModule reqtimeout_module>
|
<IfModule reqtimeout_module>
|
||||||
RequestReadTimeout handshake=0 header=20-40,MinRate=500 body=20,MinRate=500
|
RequestReadTimeout header=20-40,MinRate=500 body=20,MinRate=500
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
|
||||||
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
|
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
server {
|
server {
|
||||||
listen 8443 ssl http2;
|
listen 8443 ssl;
|
||||||
listen [::]:8443 ssl http2;
|
listen [::]:8443 ssl;
|
||||||
|
|
||||||
|
http2 on;
|
||||||
|
|
||||||
server_name zabbix;
|
server_name zabbix;
|
||||||
server_name_in_redirect off;
|
server_name_in_redirect off;
|
||||||
|
@ -28,7 +28,7 @@ fi
|
|||||||
# Nginx main configuration file
|
# Nginx main configuration file
|
||||||
NGINX_CONF_FILE="/etc/nginx/nginx.conf"
|
NGINX_CONF_FILE="/etc/nginx/nginx.conf"
|
||||||
# Nginx virtual hosts configuration directory
|
# Nginx virtual hosts configuration directory
|
||||||
NGINX_CONFD_DIR="/etc/nginx/http.d"
|
NGINX_CONFD_DIR="/etc/nginx/conf.d"
|
||||||
# Directory with SSL certificate files for Nginx
|
# Directory with SSL certificate files for Nginx
|
||||||
NGINX_SSL_CONFIG_DIR="/etc/ssl/nginx"
|
NGINX_SSL_CONFIG_DIR="/etc/ssl/nginx"
|
||||||
# PHP-FPM configuration file
|
# PHP-FPM configuration file
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
server {
|
server {
|
||||||
listen 8443 ssl http2;
|
listen 8443 ssl;
|
||||||
listen [::]:8443 ssl http2;
|
listen [::]:8443 ssl;
|
||||||
|
|
||||||
|
http2 on;
|
||||||
|
|
||||||
server_name zabbix;
|
server_name zabbix;
|
||||||
server_name_in_redirect off;
|
server_name_in_redirect off;
|
||||||
|
Loading…
Reference in New Issue
Block a user