Migrate to PHP-FPM for all Web images

This commit is contained in:
Alexey Pustovalov 2025-01-15 14:38:34 +09:00
parent 63401c88b9
commit 0f302df788
7 changed files with 13 additions and 9 deletions

View File

@ -56,7 +56,7 @@ TraceEnable Off
AddDefaultCharset UTF-8
<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>
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1

View File

@ -56,7 +56,7 @@ TraceEnable Off
AddDefaultCharset UTF-8
<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>
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1

View File

@ -56,7 +56,7 @@ TraceEnable Off
AddDefaultCharset UTF-8
<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>
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1

View File

@ -56,7 +56,7 @@ TraceEnable Off
AddDefaultCharset UTF-8
<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>
SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1

View File

@ -1,6 +1,8 @@
server {
listen 8443 ssl http2;
listen [::]:8443 ssl http2;
listen 8443 ssl;
listen [::]:8443 ssl;
http2 on;
server_name zabbix;
server_name_in_redirect off;

View File

@ -28,7 +28,7 @@ fi
# Nginx main configuration file
NGINX_CONF_FILE="/etc/nginx/nginx.conf"
# 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
NGINX_SSL_CONFIG_DIR="/etc/ssl/nginx"
# PHP-FPM configuration file

View File

@ -1,6 +1,8 @@
server {
listen 8443 ssl http2;
listen [::]:8443 ssl http2;
listen 8443 ssl;
listen [::]:8443 ssl;
http2 on;
server_name zabbix;
server_name_in_redirect off;