Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 26/03/2023, à 15:30

Sky3RN

[RÉSOLU] Apache2 se coupe tout seul

Hello,

Je crois que j'ai un souci avec apache2 !

Tout fonctionnait très bien, je l'utilise sur un serveur privé depuis plusieurs années avec OwnCloud dessus. Mais depuis quelques temps il se bloque tout seul, pourtant le server tourne toujours. J'ai encore accès au SSH, au FTP, etc.. Mais le HTTP bloque et je suis obligé de redémarrer le service apache2, c'est assez embêtant.

Ça se coupe aléatoirement. Plusieurs fois par jour.

J'ai remarqué qu'il y a parfois beauuucoup de processus "/usr/sbin/apache2 -k start" du coup j'ai essayé de réinstaller apache2 (sudo apt install --reinstall apache2), ça avait l'air de bien tourner, les processus semblent ne plus s'accumuler, et au bout d'une heure ça a encore coupé.

╰──▸ sudo service apache2 status                                                              (dim. 26 mars 23)╯
● apache2.service - The Apache HTTP Server
     Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled)
     Active: active (running) since Sun 2023-03-26 13:53:42 CEST; 1h 15min ago
       Docs: https://httpd.apache.org/docs/2.4/
   Main PID: 1935533 (apache2)
      Tasks: 11 (limit: 9282)
     Memory: 1.4G
     CGroup: /system.slice/apache2.service
             ├─1935533 /usr/sbin/apache2 -k start
             ├─1941254 /usr/sbin/apache2 -k start
             ├─1947969 /usr/sbin/apache2 -k start
             ├─1948078 /usr/sbin/apache2 -k start
             ├─1948840 /usr/sbin/apache2 -k start
             ├─1949353 /usr/sbin/apache2 -k start
             ├─1949544 /usr/sbin/apache2 -k start
             ├─1949971 /usr/sbin/apache2 -k start
             ├─1949977 /usr/sbin/apache2 -k start
             ├─1949978 /usr/sbin/apache2 -k start
             └─1949980 /usr/sbin/apache2 -k start

mars 26 13:53:42 SkyernCloud systemd[1]: Starting The Apache HTTP Server...
mars 26 13:53:42 SkyernCloud systemd[1]: Started The Apache HTTP Server.

Dites-moi si vous avez besoin de voir certains fichiers de conf, je sais que c'est compliqué de m'aider comme ça avec aussi peu d'infos mais c'est un milieu que je ne maîtrise pas trop donc je sais pas quels fichiers pourraient vous aider ! smile

apache2.conf :

# This is the main Apache server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See http://httpd.apache.org/docs/2.4/ for detailed information about
# the directives and /usr/share/doc/apache2/README.Debian about Debian specific
# hints.
#
#
# Summary of how the Apache 2 configuration works in Debian:
# The Apache 2 web server configuration in Debian is quite different to
# upstream's suggested way to configure the web server. This is because Debian's
# default Apache2 installation attempts to make adding and removing modules,
# virtual hosts, and extra configuration directives as flexible as possible, in
# order to make automating the changes and administering the server as easy as
# possible.

# It is split into several files forming the configuration hierarchy outlined
# below, all located in the /etc/apache2/ directory:
#
#	/etc/apache2/
#	|-- apache2.conf
#	|	`--  ports.conf
#	|-- mods-enabled
#	|	|-- *.load
#	|	`-- *.conf
#	|-- conf-enabled
#	|	`-- *.conf
# 	`-- sites-enabled
#	 	`-- *.conf
#
#
# * apache2.conf is the main configuration file (this file). It puts the pieces
#   together by including all remaining configuration files when starting up the
#   web server.
#
# * ports.conf is always included from the main configuration file. It is
#   supposed to determine listening ports for incoming connections which can be
#   customized anytime.
#
# * Configuration files in the mods-enabled/, conf-enabled/ and sites-enabled/
#   directories contain particular configuration snippets which manage modules,
#   global configuration fragments, or virtual host configurations,
#   respectively.
#
#   They are activated by symlinking available configuration files from their
#   respective *-available/ counterparts. These should be managed by using our
#   helpers a2enmod/a2dismod, a2ensite/a2dissite and a2enconf/a2disconf. See
#   their respective man pages for detailed information.
#
# * The binary is called apache2. Due to the use of environment variables, in
#   the default configuration, apache2 needs to be started/stopped with
#   /etc/init.d/apache2 or apache2ctl. Calling /usr/bin/apache2 directly will not
#   work with the default configuration.


# Global configuration
#

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# NOTE!  If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the Mutex documentation (available
# at <URL:http://httpd.apache.org/docs/2.4/mod/core.html#mutex>);
# you will save yourself a lot of trouble.
#
# Do NOT add a slash at the end of the directory path.
#
#ServerRoot "/etc/apache2"

#
# The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
#
#Mutex file:${APACHE_LOCK_DIR} default

#
# The directory where shm and other runtime files will be stored.
#

DefaultRuntimeDir ${APACHE_RUN_DIR}

#
# PidFile: The file in which the server should record its process
# identification number when it starts.
# This needs to be set in /etc/apache2/envvars
#
PidFile ${APACHE_PID_FILE}

#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 300

#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
#
KeepAlive On

#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 100

#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 5


# These need to be set in /etc/apache2/envvars
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}

#
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it'd be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
#
HostnameLookups Off

# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here.  If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#
ErrorLog ${APACHE_LOG_DIR}/error.log

#
# LogLevel: Control the severity of messages logged to the error_log.
# Available values: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the log level for particular modules, e.g.
# "LogLevel info ssl:warn"
#
LogLevel warn

# Include module configuration:
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf

# Include list of ports to listen on
Include ports.conf


# Sets the default security model of the Apache2 HTTPD server. It does
# not allow access to the root filesystem outside of /usr/share and /var/www.
# The former is used by web applications packaged in Debian,
# the latter may be used for local directories served by the web server. If
# your system is serving content from a sub-directory in /srv you must allow
# access here, or in any related virtual host.
<Directory />
	Options FollowSymLinks
	AllowOverride None
	Require all denied
</Directory>

<Directory /usr/share>
	AllowOverride None
	Require all granted
</Directory>

<Directory /var/www/>
	Options Indexes FollowSymLinks
	AllowOverride None
	Require all granted
</Directory>

#<Directory /srv/>
#	Options Indexes FollowSymLinks
#	AllowOverride None
#	Require all granted
#</Directory>




# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives.  See also the AllowOverride
# directive.
#
AccessFileName .htaccess

#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<FilesMatch "^\.ht">
	Require all denied
</FilesMatch>


#
# The following directives define some format nicknames for use with
# a CustomLog directive.
#
# These deviate from the Common Log Format definitions in that they use %O
# (the actual bytes sent including headers) instead of %b (the size of the
# requested file), because the latter makes it impossible to detect partial
# requests.
#
# Note that the use of %{X-Forwarded-For}i instead of %h is not recommended.
# Use mod_remoteip instead.
#
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

# Include of directories ignores editors' and dpkg's backup files,
# see README.Debian for details.

# Include generic snippets of statements
IncludeOptional conf-enabled/*.conf

# Include the virtual host configurations:
IncludeOptional sites-enabled/*.conf

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

000-default.conf

<VirtualHost *:80>

	ServerAdmin MON_MAIL
	DocumentRoot /var/www/owncloud/

	ServerName MON_URL
	
	ProxyPreserveHost On
	ProxyRequests Off
	ProxyPass / http://localhost/
	ProxyPassReverse / http://localhost/


	ErrorLog ${APACHE_LOG_DIR}/error.log
	CustomLog ${APACHE_LOG_DIR}/access.log combined

RewriteEngine on
RewriteCond %{SERVER_NAME} =MON_URL [OR]
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>

<VirtualHost *:80>

	ServerAdmin MON_MAIL
	ServerName MON_URL_2

	ProxyPreserveHost On
	ProxyRequests Off
	ProxyPass / http://192.168.0.12:800/
	ProxyPassReverse / http://192.168.0.12:800/

	ErrorLog ${APACHE_LOG_DIR}/error.log
	CustomLog ${APACHE_LOG_DIR}/access.log combined

</VirtualHost>

(J'ai pris soin de cacher mon mail et mon URL).

mpm_prefork.conf

# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# MaxRequestWorkers: maximum number of server processes allowed to start
# MaxConnectionsPerChild: maximum number of requests a server process serves

<IfModule mpm_prefork_module>
	StartServers			 3
	MinSpareServers		  3
	MaxSpareServers		 5
	MaxRequestWorkers	  50
	MaxClients		10
	MaxConnectionsPerChild   0
</IfModule>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

Log de la machine au moment où ça a bloqué, rien à signaler (?) :

╰──▸ tail -f /var/log/auth.log                                                                (dim. 26 mars 23)╯
Mar 26 15:51:20 SkyernCloud sudo: pam_unix(sudo:session): session closed for user root
Mar 26 15:51:44 SkyernCloud sudo:   skyern : TTY=pts/3 ; PWD=/home/skyern ; USER=root ; COMMAND=/usr/sbin/service apache2 status
Mar 26 15:51:44 SkyernCloud sudo: pam_unix(sudo:session): session opened for user root by skyern(uid=0)
Mar 26 15:51:44 SkyernCloud sudo: pam_unix(sudo:session): session closed for user root
Mar 26 15:51:48 SkyernCloud sudo:   skyern : TTY=pts/3 ; PWD=/home/skyern ; USER=root ; COMMAND=/usr/sbin/service apache2 status
Mar 26 15:51:48 SkyernCloud sudo: pam_unix(sudo:session): session opened for user root by skyern(uid=0)
Mar 26 15:51:48 SkyernCloud sudo: pam_unix(sudo:session): session closed for user root
Mar 26 15:51:49 SkyernCloud sudo:   skyern : TTY=pts/3 ; PWD=/home/skyern ; USER=root ; COMMAND=/usr/sbin/service apache2 status
Mar 26 15:51:49 SkyernCloud sudo: pam_unix(sudo:session): session opened for user root by skyern(uid=0)
Mar 26 15:51:49 SkyernCloud sudo: pam_unix(sudo:session): session closed for user root

Merci d'avance !

Dernière modification par Sky3RN (Le 29/03/2023, à 11:01)

Hors ligne

#2 Le 27/03/2023, à 11:41

Sky3RN

Re : [RÉSOLU] Apache2 se coupe tout seul

Sur Twitter on m'a conseillé d'activer MPM Event, ça semble avoir résolu mon problème.

Sachez que MPM Event ne fonctionne pas avec le module PHP donc il faut installer PHP-FPM, cette vidéo m'a aidé à tout installer correctement : https://www.youtube.com/watch?v=MNxVJRlYXu8

Dernière modification par Sky3RN (Le 28/03/2023, à 13:48)

Hors ligne

#3 Le 27/03/2023, à 13:12

krodelabestiole

Re : [RÉSOLU] Apache2 se coupe tout seul

Sky3RN a écrit :

il faut installer PHP-FPM, cette vidéo m'a aidé à tout installer correctement

c'est vrai qu'il faudrait ajouter ça à la doc !
https://doc.ubuntu-fr.org/php
(ça pourrait aussi être l'occase de parler de caddy à la place d'apache...)

Hors ligne

#4 Le 27/03/2023, à 15:40

bruno

Re : [RÉSOLU] Apache2 se coupe tout seul

Euh… Solution incompréhensible.
Je ne vois pas comment la configuration indiquée peut fonctionner et encore moins le rapport avec le MPM event d'Apache.

Hors ligne

#5 Le 28/03/2023, à 10:42

Sky3RN

Re : [RÉSOLU] Apache2 se coupe tout seul

bruno a écrit :

Euh… Solution incompréhensible.
Je ne vois pas comment la configuration indiquée peut fonctionner et encore moins le rapport avec le MPM event d'Apache.

Pour ça ne fonctionnerait pas ?
Ce qu'on m'a dit :

c'est un souci de prefork qui crée un nouveau process à chaque requête et donc sature vite. Il suffit qu'un bot de moteur de recherche passe et que ta machine ne soit pas à la hauteur

C'est assez stable dans l'ensemble par contre ça coupe souvent (mais se relance automatiquement au bout de quelques minutes contrairement à avant où ça ne se relançait pas).

Je n'arrive pas à comprendre où ça merde.

Dernière modification par Sky3RN (Le 28/03/2023, à 10:52)

Hors ligne

#6 Le 28/03/2023, à 10:56

bruno

Re : [RÉSOLU] Apache2 se coupe tout seul

Explication.

Si je regarde simplement le fichier 000-default.conf que tu as donné toute requête est renvoyée vers localhost via ces directives :

	ProxyPass / http://localhost/
	ProxyPassReverse / http://localhost/

ce qui créerait une boucle infinie de localhost vers localhost. Telle quelle, cette configuration devrait engendrer une erreur 500.

Maintenant je peux supposer que l'autre redirection via une réécriture d'URL prend le pas sur ProxyPass :

RewriteEngine on
RewriteCond %{SERVER_NAME} =MON_URL [OR]
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]

et donc toute requête est réécrite en HTTPS., mais on ne sait rien de la configuration sur le port 443…

À moins que ce ne soit le deuxième hôte virtuel sur le port 80 qui prenne le pas en renvoyant tout vers http://192.168.0.12:800/ :

	ProxyPass / http://192.168.0.12:800/
	ProxyPassReverse / http://192.168.0.12:800/

???

Les logs utiles en cas de problème avec Apache, ce sont d'Apache pas les logs authentification…

Bref, ta configuration, telle que tu la présentes, est aberrante, et je ne vois pas comment cela pourrait fonctionner correctement.

Dernière modification par bruno (Le 28/03/2023, à 11:00)

Hors ligne

#7 Le 28/03/2023, à 11:13

Sky3RN

Re : [RÉSOLU] Apache2 se coupe tout seul

J'avais précisé que je ne suis pas un expert !

Je comprends mieux ce que tu veux dire, et ça expliquerait peut-être pourquoi ça bloque.

Pour te répondre point par point :

bruno a écrit :

Si je regarde simplement le fichier 000-default.conf que tu as donné toute requête est renvoyée vers localhost via ces directives :

	ProxyPass / http://localhost/
	ProxyPassReverse / http://localhost/

ce qui créerait une boucle infinie de localhost vers localhost. Telle quelle, cette configuration devrait engendrer une erreur 500.

Pour le Reverse Proxy j'ai suivi ce qu'on m'a dit ici : https://forum.ubuntu-fr.org/viewtopic.php?id=2078417

bruno a écrit :

Maintenant je peux supposer que l'autre redirection via une réécriture d'URL prend le pas sur ProxyPass :

RewriteEngine on
RewriteCond %{SERVER_NAME} =MON_URL [OR]
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]

et donc toute requête est réécrite en HTTPS., mais on ne sait rien de la configuration sur le port 443…

J'ai installé ça y a deux ans, en suivant quelques tutos et en installant aussi Certbot.
Pour le port 443 il est bien listé dans ports.conf et dans la config de owncloud :

# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default.conf

Listen 80

<IfModule ssl_module>
	Listen 443
</IfModule>

<IfModule mod_gnutls.c>
	Listen 443
</IfModule>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
Alias /owncloud "/var/www/owncloud/"

<Directory /var/www/owncloud/>
  Options +FollowSymlinks
  AllowOverride All

 <IfModule mod_dav.c>
  Dav off
 </IfModule>

 SetEnv HOME /var/www/owncloud
 SetEnv HTTP_HOME /var/www/owncloud
</Directory>

<VirtualHost *:443>
    ServerName MON_NOM
    DocumentRoot /var/www/owncloud

    SSLEngine on
    ServerAlias MON_URL
    Include /etc/letsencrypt/options-ssl-apache.conf

ServerAlias cloud.sky3rn.fr
SSLCertificateFile /etc/letsencrypt/live/MON_URL/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/MON_URL/privkey.pem
</VirtualHost>

<IfModule mod_headers.c>
  Header always set Strict-Transport-Security "max-age=15552000; includeSubDomains"
</IfModule>

Dis-moi si tu as besoin de savoir d'autres choses ?

bruno a écrit :

À moins que ce ne soit le deuxième hôte virtuel sur le port 80 qui prenne le pas en renvoyant tout vers http://192.168.0.12:800/ :

	ProxyPass / http://192.168.0.12:800/
	ProxyPassReverse / http://192.168.0.12:800/

Lui il n'a pas d'HTTPS, c'est l'accès à mon site web en local pour quand je l'édite avant de l'envoyer sur son vrai hébergement.

Pour les logs :

[Tue Mar 28 10:01:47.015777 2023] [proxy_http:error] [pid 2387863:tid 139815622248192] (70007)The timeout specified has expired: [client 127.0.0.1:33496] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:01:47.025592 2023] [proxy:error] [pid 2387863:tid 139815622248192] [client 127.0.0.1:33496] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:01:47.015826 2023] [proxy_http:error] [pid 2387863:tid 139815647426304] (70007)The timeout specified has expired: [client 127.0.0.1:33512] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:01:47.027580 2023] [proxy:error] [pid 2387863:tid 139815647426304] [client 127.0.0.1:33512] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:01:47.015846 2023] [proxy_http:error] [pid 2387864:tid 139815765800704] (70007)The timeout specified has expired: [client 127.0.0.1:33484] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:01:47.027609 2023] [proxy:error] [pid 2387864:tid 139815765800704] [client 127.0.0.1:33484] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:01:47.015860 2023] [proxy_http:error] [pid 2387864:tid 139815471277824] (70007)The timeout specified has expired: [client 127.0.0.1:33510] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:01:47.027791 2023] [proxy:error] [pid 2387864:tid 139815471277824] [client 127.0.0.1:33510] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:01:47.015941 2023] [proxy_http:error] [pid 2387863:tid 139815680997120] (70007)The timeout specified has expired: [client 127.0.0.1:33538] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:01:47.027964 2023] [proxy:error] [pid 2387863:tid 139815680997120] [client 127.0.0.1:33538] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:01:47.015957 2023] [proxy_http:error] [pid 2387864:tid 139815622248192] (70007)The timeout specified has expired: [client 127.0.0.1:33486] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:01:47.028086 2023] [proxy:error] [pid 2387864:tid 139815622248192] [client 127.0.0.1:33486] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:01:47.015954 2023] [proxy_http:error] [pid 2387864:tid 139815479670528] (70007)The timeout specified has expired: [client 127.0.0.1:33498] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:01:47.028170 2023] [proxy:error] [pid 2387864:tid 139815479670528] [client 127.0.0.1:33498] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:01:47.073979 2023] [proxy_http:error] [pid 2387864:tid 139815471277824] (20014)Internal error (specific information not available): [client 127.0.0.1:33854] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:01:47.074006 2023] [proxy:error] [pid 2387864:tid 139815471277824] [client 127.0.0.1:33854] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.625782 2023] [proxy_http:error] [pid 2387997:tid 139815672604416] (70007)The timeout specified has expired: [client 127.0.0.1:34308] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.626345 2023] [proxy:error] [pid 2387997:tid 139815672604416] [client 127.0.0.1:34308] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.625782 2023] [proxy_http:error] [pid 2387864:tid 139815664211712] (70007)The timeout specified has expired: [client 193.32.162.159:45196] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.626387 2023] [proxy:error] [pid 2387864:tid 139815664211712] [client 193.32.162.159:45196] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.630307 2023] [proxy_http:error] [pid 2387864:tid 139815563499264] (70007)The timeout specified has expired: [client 127.0.0.1:34316] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.630336 2023] [proxy:error] [pid 2387864:tid 139815563499264] [client 127.0.0.1:34316] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.630761 2023] [proxy_http:error] [pid 2387997:tid 139815655819008] (70007)The timeout specified has expired: [client 127.0.0.1:34326] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.630786 2023] [proxy:error] [pid 2387997:tid 139815655819008] [client 127.0.0.1:34326] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.638003 2023] [proxy_http:error] [pid 2387864:tid 139815462885120] (70007)The timeout specified has expired: [client 127.0.0.1:34366] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.638033 2023] [proxy:error] [pid 2387864:tid 139815462885120] [client 127.0.0.1:34366] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.638130 2023] [proxy_http:error] [pid 2387863:tid 139815757399808] (70007)The timeout specified has expired: [client 127.0.0.1:34368] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.638161 2023] [proxy:error] [pid 2387863:tid 139815757399808] [client 127.0.0.1:34368] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.638254 2023] [proxy_http:error] [pid 2387864:tid 139815655819008] (70007)The timeout specified has expired: [client 127.0.0.1:34380] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.638273 2023] [proxy:error] [pid 2387864:tid 139815655819008] [client 127.0.0.1:34380] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.641679 2023] [proxy_http:error] [pid 2387864:tid 139815571891968] (70007)The timeout specified has expired: [client 127.0.0.1:34394] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.641714 2023] [proxy:error] [pid 2387864:tid 139815571891968] [client 127.0.0.1:34394] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.641720 2023] [proxy_http:error] [pid 2387864:tid 139815630640896] (70007)The timeout specified has expired: [client 127.0.0.1:34384] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.641735 2023] [proxy:error] [pid 2387864:tid 139815630640896] [client 127.0.0.1:34384] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.641881 2023] [proxy_http:error] [pid 2387864:tid 139815765800704] (70007)The timeout specified has expired: [client 127.0.0.1:34386] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.641893 2023] [proxy:error] [pid 2387864:tid 139815765800704] [client 127.0.0.1:34386] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.642000 2023] [proxy_http:error] [pid 2387864:tid 139815613855488] (70007)The timeout specified has expired: [client 127.0.0.1:34388] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.642012 2023] [proxy:error] [pid 2387864:tid 139815613855488] [client 127.0.0.1:34388] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.642107 2023] [proxy_http:error] [pid 2387864:tid 139815680997120] (70007)The timeout specified has expired: [client 127.0.0.1:34390] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.642119 2023] [proxy:error] [pid 2387864:tid 139815680997120] [client 127.0.0.1:34390] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.645678 2023] [proxy_http:error] [pid 2387864:tid 139815647426304] (70007)The timeout specified has expired: [client 127.0.0.1:34426] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.645717 2023] [proxy:error] [pid 2387864:tid 139815647426304] [client 127.0.0.1:34426] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.645891 2023] [proxy_http:error] [pid 2387863:tid 139815588677376] (70007)The timeout specified has expired: [client 127.0.0.1:34440] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.645904 2023] [proxy:error] [pid 2387863:tid 139815588677376] [client 127.0.0.1:34440] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.646477 2023] [proxy_http:error] [pid 2387864:tid 139815757399808] (70007)The timeout specified has expired: [client 127.0.0.1:34436] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.646490 2023] [proxy:error] [pid 2387864:tid 139815757399808] [client 127.0.0.1:34436] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.647753 2023] [proxy_http:error] [pid 2387864:tid 139815639033600] (70007)The timeout specified has expired: [client 127.0.0.1:34442] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.647772 2023] [proxy:error] [pid 2387864:tid 139815639033600] [client 127.0.0.1:34442] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.649678 2023] [proxy_http:error] [pid 2387864:tid 139815446099712] (70007)The timeout specified has expired: [client 127.0.0.1:34460] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.649698 2023] [proxy_http:error] [pid 2387864:tid 139815588677376] (70007)The timeout specified has expired: [client 127.0.0.1:34444] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.649704 2023] [proxy:error] [pid 2387864:tid 139815446099712] [client 127.0.0.1:34460] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.649729 2023] [proxy:error] [pid 2387864:tid 139815588677376] [client 127.0.0.1:34444] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.649741 2023] [proxy_http:error] [pid 2387864:tid 139815622248192] (70007)The timeout specified has expired: [client 127.0.0.1:34450] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.649753 2023] [proxy:error] [pid 2387864:tid 139815622248192] [client 127.0.0.1:34450] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.649908 2023] [proxy_http:error] [pid 2387864:tid 139815580284672] (70007)The timeout specified has expired: [client 127.0.0.1:34446] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.649922 2023] [proxy:error] [pid 2387864:tid 139815580284672] [client 127.0.0.1:34446] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.649919 2023] [proxy_http:error] [pid 2387863:tid 139815639033600] (70007)The timeout specified has expired: [client 127.0.0.1:34462] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.649941 2023] [proxy:error] [pid 2387863:tid 139815639033600] [client 127.0.0.1:34462] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.650179 2023] [proxy_http:error] [pid 2387864:tid 139815605462784] (70007)The timeout specified has expired: [client 127.0.0.1:34456] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.650190 2023] [proxy:error] [pid 2387864:tid 139815605462784] [client 127.0.0.1:34456] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.650538 2023] [proxy_http:error] [pid 2387864:tid 139815774201600] (70007)The timeout specified has expired: [client 127.0.0.1:34466] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.650550 2023] [proxy:error] [pid 2387864:tid 139815774201600] [client 127.0.0.1:34466] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.653748 2023] [proxy_http:error] [pid 2387863:tid 139815571891968] (70007)The timeout specified has expired: [client 127.0.0.1:34486] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.653762 2023] [proxy_http:error] [pid 2387863:tid 139815597070080] (70007)The timeout specified has expired: [client 127.0.0.1:34488] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.653986 2023] [proxy:error] [pid 2387863:tid 139815597070080] [client 127.0.0.1:34488] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.653774 2023] [proxy:error] [pid 2387863:tid 139815571891968] [client 127.0.0.1:34486] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.654378 2023] [proxy_http:error] [pid 2387997:tid 139814741473024] (70007)The timeout specified has expired: [client 127.0.0.1:34482] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.654394 2023] [proxy:error] [pid 2387997:tid 139814741473024] [client 127.0.0.1:34482] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.653797 2023] [proxy_http:error] [pid 2387997:tid 139814733080320] (70007)The timeout specified has expired: [client 127.0.0.1:34480] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.653813 2023] [proxy_http:error] [pid 2387863:tid 139815765800704] (70007)The timeout specified has expired: [client 127.0.0.1:34476] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.654414 2023] [proxy:error] [pid 2387997:tid 139814733080320] [client 127.0.0.1:34480] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.654429 2023] [proxy:error] [pid 2387863:tid 139815765800704] [client 127.0.0.1:34476] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.654529 2023] [proxy_http:error] [pid 2387863:tid 139815791003392] (70007)The timeout specified has expired: [client 127.0.0.1:34494] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.654541 2023] [proxy:error] [pid 2387863:tid 139815791003392] [client 127.0.0.1:34494] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.653820 2023] [proxy_http:error] [pid 2387997:tid 139815412561664] (70007)The timeout specified has expired: [client 127.0.0.1:34490] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.654594 2023] [proxy:error] [pid 2387997:tid 139815412561664] [client 127.0.0.1:34490] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.653826 2023] [proxy_http:error] [pid 2387863:tid 139815555106560] (70007)The timeout specified has expired: [client 127.0.0.1:34484] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.653863 2023] [proxy_http:error] [pid 2387997:tid 139815395776256] (70007)The timeout specified has expired: [client 127.0.0.1:34492] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.654766 2023] [proxy:error] [pid 2387863:tid 139815555106560] [client 127.0.0.1:34484] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.654778 2023] [proxy:error] [pid 2387997:tid 139815395776256] [client 127.0.0.1:34492] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.657723 2023] [proxy_http:error] [pid 2387863:tid 139815404103424] (70007)The timeout specified has expired: [client 127.0.0.1:34496] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.657753 2023] [proxy:error] [pid 2387863:tid 139815404103424] [client 127.0.0.1:34496] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.658276 2023] [proxy_http:error] [pid 2387863:tid 139815672604416] (70007)The timeout specified has expired: [client 127.0.0.1:34506] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.658288 2023] [proxy:error] [pid 2387863:tid 139815672604416] [client 127.0.0.1:34506] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.658291 2023] [proxy_http:error] [pid 2387997:tid 139815757399808] (70007)The timeout specified has expired: [client 127.0.0.1:34514] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.658304 2023] [proxy:error] [pid 2387997:tid 139815757399808] [client 127.0.0.1:34514] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.658414 2023] [proxy_http:error] [pid 2387863:tid 139815655819008] (70007)The timeout specified has expired: [client 127.0.0.1:34518] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.658426 2023] [proxy:error] [pid 2387863:tid 139815655819008] [client 127.0.0.1:34518] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.661697 2023] [proxy_http:error] [pid 2387997:tid 139815774201600] (70007)The timeout specified has expired: [client 127.0.0.1:34520] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.661736 2023] [proxy:error] [pid 2387997:tid 139815774201600] [client 127.0.0.1:34520] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.662152 2023] [proxy_http:error] [pid 2387997:tid 139815639033600] (70007)The timeout specified has expired: [client 127.0.0.1:34542] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.662156 2023] [proxy_http:error] [pid 2387997:tid 139814699509504] (70007)The timeout specified has expired: [client 127.0.0.1:34524] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.662167 2023] [proxy:error] [pid 2387997:tid 139815639033600] [client 127.0.0.1:34542] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.662189 2023] [proxy:error] [pid 2387997:tid 139814699509504] [client 127.0.0.1:34524] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.662314 2023] [proxy_http:error] [pid 2387863:tid 139815605462784] (70007)The timeout specified has expired: [client 127.0.0.1:34528] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.662330 2023] [proxy:error] [pid 2387863:tid 139815605462784] [client 127.0.0.1:34528] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.662502 2023] [proxy_http:error] [pid 2387997:tid 139814707902208] (70007)The timeout specified has expired: [client 127.0.0.1:34530] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.662514 2023] [proxy:error] [pid 2387997:tid 139814707902208] [client 127.0.0.1:34530] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.662696 2023] [proxy_http:error] [pid 2387997:tid 139815647426304] (70007)The timeout specified has expired: [client 127.0.0.1:34544] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.662709 2023] [proxy:error] [pid 2387997:tid 139815647426304] [client 127.0.0.1:34544] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.662885 2023] [proxy_http:error] [pid 2387997:tid 139815404168960] (70007)The timeout specified has expired: [client 127.0.0.1:34534] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.662896 2023] [proxy:error] [pid 2387997:tid 139815404168960] [client 127.0.0.1:34534] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.661922 2023] [proxy_http:error] [pid 2387997:tid 139815680997120] (70007)The timeout specified has expired: [client 127.0.0.1:34532] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.662987 2023] [proxy:error] [pid 2387997:tid 139815680997120] [client 127.0.0.1:34532] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.665917 2023] [proxy_http:error] [pid 2387997:tid 139815630640896] (70007)The timeout specified has expired: [client 127.0.0.1:34548] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.665933 2023] [proxy:error] [pid 2387997:tid 139815630640896] [client 127.0.0.1:34548] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.666100 2023] [proxy_http:error] [pid 2387997:tid 139815765800704] (70007)The timeout specified has expired: [client 127.0.0.1:34556] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.666111 2023] [proxy:error] [pid 2387997:tid 139815765800704] [client 127.0.0.1:34556] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.666229 2023] [proxy_http:error] [pid 2387997:tid 139815370598144] (70007)The timeout specified has expired: [client 127.0.0.1:34560] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.666240 2023] [proxy:error] [pid 2387997:tid 139815370598144] [client 127.0.0.1:34560] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.666359 2023] [proxy_http:error] [pid 2387997:tid 139815378990848] (70007)The timeout specified has expired: [client 127.0.0.1:34564] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.666370 2023] [proxy:error] [pid 2387997:tid 139815378990848] [client 127.0.0.1:34564] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.666844 2023] [proxy_http:error] [pid 2387997:tid 139815791003392] (70007)The timeout specified has expired: [client 127.0.0.1:34552] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.666858 2023] [proxy:error] [pid 2387997:tid 139815791003392] [client 127.0.0.1:34552] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:30:30.669672 2023] [proxy_http:error] [pid 2387997:tid 139815664211712] (70007)The timeout specified has expired: [client 127.0.0.1:34570] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:30:30.669702 2023] [proxy:error] [pid 2387997:tid 139815664211712] [client 127.0.0.1:34570] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.729680 2023] [proxy_http:error] [pid 2387864:tid 139815597070080] (70007)The timeout specified has expired: [client 127.0.0.1:34332] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.730947 2023] [proxy:error] [pid 2387864:tid 139815597070080] [client 127.0.0.1:34332] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.733695 2023] [proxy_http:error] [pid 2387864:tid 139815664211712] (70007)The timeout specified has expired: [client 127.0.0.1:34626] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.733725 2023] [proxy:error] [pid 2387864:tid 139815664211712] [client 127.0.0.1:34626] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.737705 2023] [proxy_http:error] [pid 2387864:tid 139815655819008] (70007)The timeout specified has expired: [client 127.0.0.1:34366] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.737736 2023] [proxy:error] [pid 2387864:tid 139815655819008] [client 127.0.0.1:34366] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.741697 2023] [proxy_http:error] [pid 2387863:tid 139815757399808] (70007)The timeout specified has expired: [client 127.0.0.1:34632] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.741746 2023] [proxy:error] [pid 2387863:tid 139815757399808] [client 127.0.0.1:34632] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.741750 2023] [proxy_http:error] [pid 2387863:tid 139815529928448] (70007)The timeout specified has expired: [client 127.0.0.1:34640] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.741778 2023] [proxy:error] [pid 2387863:tid 139815529928448] [client 127.0.0.1:34640] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.741979 2023] [proxy_http:error] [pid 2387864:tid 139815613855488] (70007)The timeout specified has expired: [client 127.0.0.1:34394] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.742006 2023] [proxy:error] [pid 2387864:tid 139815613855488] [client 127.0.0.1:34394] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.742173 2023] [proxy_http:error] [pid 2387863:tid 139815546713856] (70007)The timeout specified has expired: [client 127.0.0.1:34376] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.742195 2023] [proxy:error] [pid 2387863:tid 139815546713856] [client 127.0.0.1:34376] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.742248 2023] [proxy_http:error] [pid 2387863:tid 139815680997120] (70007)The timeout specified has expired: [client 127.0.0.1:34646] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.742269 2023] [proxy:error] [pid 2387863:tid 139815680997120] [client 127.0.0.1:34646] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.745926 2023] [proxy_http:error] [pid 2387864:tid 139815791003392] (70007)The timeout specified has expired: [client 127.0.0.1:34662] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.745928 2023] [proxy_http:error] [pid 2387863:tid 139815774201600] (70007)The timeout specified has expired: [client 127.0.0.1:34656] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.745947 2023] [proxy:error] [pid 2387864:tid 139815791003392] [client 127.0.0.1:34662] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.745954 2023] [proxy:error] [pid 2387863:tid 139815774201600] [client 127.0.0.1:34656] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.746157 2023] [proxy_http:error] [pid 2387863:tid 139815588677376] (70007)The timeout specified has expired: [client 127.0.0.1:34658] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.746169 2023] [proxy:error] [pid 2387863:tid 139815588677376] [client 127.0.0.1:34658] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.746421 2023] [proxy_http:error] [pid 2387864:tid 139815647426304] (70007)The timeout specified has expired: [client 127.0.0.1:34426] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.746433 2023] [proxy:error] [pid 2387864:tid 139815647426304] [client 127.0.0.1:34426] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.749757 2023] [proxy_http:error] [pid 2387864:tid 139815622248192] (70007)The timeout specified has expired: [client 127.0.0.1:34460] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.749757 2023] [proxy_http:error] [pid 2387864:tid 139815639033600] (70007)The timeout specified has expired: [client 127.0.0.1:34674] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.749799 2023] [proxy:error] [pid 2387864:tid 139815622248192] [client 127.0.0.1:34460] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.749807 2023] [proxy:error] [pid 2387864:tid 139815639033600] [client 127.0.0.1:34674] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.749891 2023] [proxy_http:error] [pid 2387863:tid 139815630640896] (70007)The timeout specified has expired: [client 127.0.0.1:34676] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.749905 2023] [proxy:error] [pid 2387863:tid 139815630640896] [client 127.0.0.1:34676] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.750067 2023] [proxy_http:error] [pid 2387864:tid 139815446099712] (70007)The timeout specified has expired: [client 127.0.0.1:34680] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.750079 2023] [proxy:error] [pid 2387864:tid 139815446099712] [client 127.0.0.1:34680] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.750099 2023] [proxy_http:error] [pid 2387863:tid 139815639033600] (70007)The timeout specified has expired: [client 127.0.0.1:34678] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.750111 2023] [proxy:error] [pid 2387863:tid 139815639033600] [client 127.0.0.1:34678] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.750152 2023] [proxy_http:error] [pid 2387864:tid 139815580284672] (70007)The timeout specified has expired: [client 127.0.0.1:34450] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.750169 2023] [proxy:error] [pid 2387864:tid 139815580284672] [client 127.0.0.1:34450] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.750497 2023] [proxy_http:error] [pid 2387864:tid 139815471277824] (70007)The timeout specified has expired: [client 127.0.0.1:34672] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.750512 2023] [proxy:error] [pid 2387864:tid 139815471277824] [client 127.0.0.1:34672] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.750668 2023] [proxy_http:error] [pid 2387864:tid 139815588677376] (70007)The timeout specified has expired: [client 127.0.0.1:34456] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.750680 2023] [proxy:error] [pid 2387864:tid 139815588677376] [client 127.0.0.1:34456] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.753700 2023] [proxy_http:error] [pid 2387863:tid 139815555106560] (70007)The timeout specified has expired: [client 127.0.0.1:34696] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.753728 2023] [proxy:error] [pid 2387863:tid 139815555106560] [client 127.0.0.1:34696] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.753814 2023] [proxy_http:error] [pid 2387863:tid 139815597070080] (70007)The timeout specified has expired: [client 127.0.0.1:34694] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.753828 2023] [proxy:error] [pid 2387863:tid 139815597070080] [client 127.0.0.1:34694] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.753895 2023] [proxy_http:error] [pid 2387997:tid 139815412561664] (70007)The timeout specified has expired: [client 127.0.0.1:34698] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.753916 2023] [proxy:error] [pid 2387997:tid 139815412561664] [client 127.0.0.1:34698] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.754040 2023] [proxy_http:error] [pid 2387997:tid 139815672604416] (70007)The timeout specified has expired: [client 127.0.0.1:34700] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.754051 2023] [proxy:error] [pid 2387997:tid 139815672604416] [client 127.0.0.1:34700] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.754075 2023] [proxy_http:error] [pid 2387863:tid 139815791003392] (70007)The timeout specified has expired: [client 127.0.0.1:34704] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.754090 2023] [proxy:error] [pid 2387863:tid 139815791003392] [client 127.0.0.1:34704] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.754315 2023] [proxy_http:error] [pid 2387997:tid 139814733080320] (70007)The timeout specified has expired: [client 127.0.0.1:34706] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.754328 2023] [proxy:error] [pid 2387997:tid 139814733080320] [client 127.0.0.1:34706] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.757678 2023] [proxy_http:error] [pid 2387997:tid 139814716294912] (70007)The timeout specified has expired: [client 127.0.0.1:34716] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.757707 2023] [proxy:error] [pid 2387997:tid 139814716294912] [client 127.0.0.1:34716] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.757711 2023] [proxy_http:error] [pid 2387863:tid 139815571891968] (70007)The timeout specified has expired: [client 127.0.0.1:34708] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.757730 2023] [proxy:error] [pid 2387863:tid 139815571891968] [client 127.0.0.1:34708] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.761890 2023] [proxy_http:error] [pid 2387864:tid 139815462885120] (70007)The timeout specified has expired: [client 127.0.0.1:34720] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.761909 2023] [proxy:error] [pid 2387864:tid 139815462885120] [client 127.0.0.1:34720] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.762752 2023] [proxy_http:error] [pid 2387997:tid 139814707902208] (70007)The timeout specified has expired: [client 127.0.0.1:34722] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.762779 2023] [proxy:error] [pid 2387997:tid 139814707902208] [client 127.0.0.1:34722] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.762932 2023] [proxy_http:error] [pid 2387997:tid 139815774201600] (70007)The timeout specified has expired: [client 127.0.0.1:34724] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.763044 2023] [proxy:error] [pid 2387997:tid 139815774201600] [client 127.0.0.1:34724] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.762955 2023] [proxy_http:error] [pid 2387997:tid 139815647426304] (70007)The timeout specified has expired: [client 127.0.0.1:34726] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.763171 2023] [proxy:error] [pid 2387997:tid 139815647426304] [client 127.0.0.1:34726] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.762972 2023] [proxy_http:error] [pid 2387997:tid 139815362205440] (70007)The timeout specified has expired: [client 127.0.0.1:34540] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.763281 2023] [proxy:error] [pid 2387997:tid 139815362205440] [client 127.0.0.1:34540] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.762983 2023] [proxy_http:error] [pid 2387997:tid 139815404168960] (70007)The timeout specified has expired: [client 127.0.0.1:34542] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.763424 2023] [proxy:error] [pid 2387997:tid 139815404168960] [client 127.0.0.1:34542] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.762999 2023] [proxy_http:error] [pid 2387997:tid 139815680997120] (70007)The timeout specified has expired: [client 127.0.0.1:34728] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.763527 2023] [proxy:error] [pid 2387997:tid 139815680997120] [client 127.0.0.1:34728] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.765699 2023] [proxy_http:error] [pid 2387997:tid 139815757399808] (70007)The timeout specified has expired: [client 127.0.0.1:34564] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.765718 2023] [proxy:error] [pid 2387997:tid 139815757399808] [client 127.0.0.1:34564] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.765866 2023] [proxy_http:error] [pid 2387997:tid 139815395776256] (70007)The timeout specified has expired: [client 127.0.0.1:34552] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.765877 2023] [proxy:error] [pid 2387997:tid 139815395776256] [client 127.0.0.1:34552] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.766012 2023] [proxy_http:error] [pid 2387997:tid 139815639033600] (70007)The timeout specified has expired: [client 127.0.0.1:34560] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.766023 2023] [proxy:error] [pid 2387997:tid 139815639033600] [client 127.0.0.1:34560] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.766151 2023] [proxy_http:error] [pid 2387997:tid 139815782602496] (70007)The timeout specified has expired: [client 127.0.0.1:34556] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.766169 2023] [proxy:error] [pid 2387997:tid 139815782602496] [client 127.0.0.1:34556] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.769731 2023] [proxy_http:error] [pid 2387997:tid 139815765800704] (70007)The timeout specified has expired: [client 127.0.0.1:34750] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.769754 2023] [proxy:error] [pid 2387997:tid 139815765800704] [client 127.0.0.1:34750] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.769808 2023] [proxy_http:error] [pid 2387997:tid 139814724687616] (70007)The timeout specified has expired: [client 127.0.0.1:34748] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.769877 2023] [proxy_http:error] [pid 2387997:tid 139815664211712] (70007)The timeout specified has expired: [client 127.0.0.1:34762] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.769881 2023] [proxy_http:error] [pid 2387997:tid 139815378990848] (70007)The timeout specified has expired: [client 127.0.0.1:34754] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.769887 2023] [proxy:error] [pid 2387997:tid 139815664211712] [client 127.0.0.1:34762] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.769905 2023] [proxy:error] [pid 2387997:tid 139815378990848] [client 127.0.0.1:34754] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.769932 2023] [proxy_http:error] [pid 2387997:tid 139815370598144] (70007)The timeout specified has expired: [client 127.0.0.1:34538] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.769944 2023] [proxy:error] [pid 2387997:tid 139815370598144] [client 127.0.0.1:34538] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.770021 2023] [proxy_http:error] [pid 2387863:tid 139815404103424] (70007)The timeout specified has expired: [client 127.0.0.1:34758] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.770036 2023] [proxy:error] [pid 2387863:tid 139815404103424] [client 127.0.0.1:34758] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.770039 2023] [proxy_http:error] [pid 2387997:tid 139815791003392] (70007)The timeout specified has expired: [client 127.0.0.1:34524] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.770050 2023] [proxy:error] [pid 2387997:tid 139815791003392] [client 127.0.0.1:34524] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.770144 2023] [proxy_http:error] [pid 2387863:tid 139815605462784] (70007)The timeout specified has expired: [client 127.0.0.1:34760] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.770156 2023] [proxy:error] [pid 2387863:tid 139815605462784] [client 127.0.0.1:34760] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.770185 2023] [proxy_http:error] [pid 2387863:tid 139815538321152] (70007)The timeout specified has expired: [client 127.0.0.1:34506] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.770197 2023] [proxy:error] [pid 2387863:tid 139815538321152] [client 127.0.0.1:34506] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.770269 2023] [proxy_http:error] [pid 2387863:tid 139815563499264] (70007)The timeout specified has expired: [client 127.0.0.1:34518] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.770284 2023] [proxy:error] [pid 2387863:tid 139815563499264] [client 127.0.0.1:34518] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.769856 2023] [proxy_http:error] [pid 2387863:tid 139815580284672] (70007)The timeout specified has expired: [client 127.0.0.1:34528] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.770319 2023] [proxy:error] [pid 2387863:tid 139815580284672] [client 127.0.0.1:34528] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.769820 2023] [proxy:error] [pid 2387997:tid 139814724687616] [client 127.0.0.1:34748] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:35:30.770492 2023] [proxy_http:error] [pid 2387863:tid 139815664211712] (70007)The timeout specified has expired: [client 127.0.0.1:34764] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:35:30.770559 2023] [proxy:error] [pid 2387863:tid 139815664211712] [client 127.0.0.1:34764] AH00898: Error reading from remote server returned by /
[Tue Mar 28 10:40:39.989814 2023] [proxy_http:error] [pid 2387863:tid 139815655819008] (70007)The timeout specified has expired: [client 127.0.0.1:35044] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:40:39.990509 2023] [proxy:error] [pid 2387863:tid 139815655819008] [client 127.0.0.1:35044] AH00898: Error reading from remote server returned by /core/.env
[Tue Mar 28 10:40:39.989814 2023] [proxy_http:error] [pid 2387864:tid 139815613855488] (70007)The timeout specified has expired: [client 127.0.0.1:35032] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:40:39.989871 2023] [proxy_http:error] [pid 2387863:tid 139815765800704] (70007)The timeout specified has expired: [client 127.0.0.1:35046] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:40:39.990691 2023] [proxy:error] [pid 2387864:tid 139815613855488] [client 127.0.0.1:35032] AH00898: Error reading from remote server returned by /core/.env
[Tue Mar 28 10:40:39.990730 2023] [proxy:error] [pid 2387863:tid 139815765800704] [client 127.0.0.1:35046] AH00898: Error reading from remote server returned by /core/.env
[Tue Mar 28 10:40:39.990027 2023] [proxy_http:error] [pid 2387863:tid 139815639033600] (70007)The timeout specified has expired: [client 127.0.0.1:35054] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:40:39.990864 2023] [proxy:error] [pid 2387863:tid 139815639033600] [client 127.0.0.1:35054] AH00898: Error reading from remote server returned by /core/.env
[Tue Mar 28 10:40:39.990070 2023] [proxy_http:error] [pid 2387863:tid 139815538321152] (70007)The timeout specified has expired: [client 127.0.0.1:35084] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:40:39.991581 2023] [proxy:error] [pid 2387863:tid 139815538321152] [client 127.0.0.1:35084] AH00898: Error reading from remote server returned by /core/.env
[Tue Mar 28 10:40:39.990073 2023] [proxy_http:error] [pid 2387863:tid 139815774201600] (70007)The timeout specified has expired: [client 127.0.0.1:35078] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:40:39.991650 2023] [proxy:error] [pid 2387863:tid 139815774201600] [client 127.0.0.1:35078] AH00898: Error reading from remote server returned by /core/.env
[Tue Mar 28 10:40:39.990381 2023] [proxy_http:error] [pid 2387997:tid 139815404168960] (70007)The timeout specified has expired: [client 127.0.0.1:35162] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:40:39.996654 2023] [proxy:error] [pid 2387997:tid 139815404168960] [client 127.0.0.1:35162] AH00898: Error reading from remote server returned by /core/.env
[Tue Mar 28 10:40:39.990381 2023] [proxy_http:error] [pid 2387997:tid 139815362205440] (70007)The timeout specified has expired: [client 127.0.0.1:35156] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:40:39.997006 2023] [proxy:error] [pid 2387997:tid 139815362205440] [client 127.0.0.1:35156] AH00898: Error reading from remote server returned by /core/.env
[Tue Mar 28 10:40:39.990425 2023] [proxy_http:error] [pid 2387997:tid 139814724687616] (70007)The timeout specified has expired: [client 127.0.0.1:35152] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:40:39.997092 2023] [proxy:error] [pid 2387997:tid 139814724687616] [client 127.0.0.1:35152] AH00898: Error reading from remote server returned by /core/.env
[Tue Mar 28 10:40:40.057533 2023] [proxy_http:error] [pid 2387864:tid 139815630640896] (70007)The timeout specified has expired: [client 127.0.0.1:35238] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:40:40.057573 2023] [proxy:error] [pid 2387864:tid 139815630640896] [client 127.0.0.1:35238] AH00898: Error reading from remote server returned by /core/.env
[Tue Mar 28 10:40:40.058106 2023] [proxy_http:error] [pid 2387863:tid 139815605462784] (20014)Internal error (specific information not available): [client 127.0.0.1:35074] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:40:40.058475 2023] [proxy_http:error] [pid 2387863:tid 139815563499264] (20014)Internal error (specific information not available): [client 127.0.0.1:35418] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 10:40:40.058500 2023] [proxy:error] [pid 2387863:tid 139815563499264] [client 127.0.0.1:35418] AH00898: Error reading from remote server returned by /core/.env

Pour être honnête j'avais pas pensé à regarder les logs d'Apache, je ne suis pas familier avec les logs (c'est quelque chose que je découvre petit à petit).

Merci pour tes précisiosn !

Dernière modification par Sky3RN (Le 28/03/2023, à 11:17)

Hors ligne

#8 Le 28/03/2023, à 14:19

bruno

Re : [RÉSOLU] Apache2 se coupe tout seul

Ok tu n'as pas forcément très bien compris, ni été conseillé au mieux…

Pour y voir plus clair dans tes fichiers de configuration donne-nous les retours de :

a2query -s
a2query -c
a2query -m

Hors ligne

#9 Le 28/03/2023, à 14:37

Sky3RN

Re : [RÉSOLU] Apache2 se coupe tout seul

Oui, je pense aussi !

J'ai réussi à cleaner un peu ce qu'il y avait dans les logs à l'aide de quelques recherches Google, là ça fait une heure que ça tourne tranquillement sans erreurs et sans ralentissements, pour le moment. ??

J'ai par exemple rajouté "connectiontimeout=60 timeout=60" aux deux lignes qui contenaient ProxyPass :

ProxyPass / http://localhost/ connectiontimeout=60 timeout=60

ProxyPass / http://192.168.0.12:800/ connectiontimeout=60 timeout=60

Rectifié mon ServerName et ServerAlias qui semblaient être inversés et donc ça générait des erreurs (Pour simplifier la chose j'ai mis la même chose sur les deux, à savoir l'URL du server).

Dans le mpm_event.conf j'ai augmenté le MaxRequestWorkers de 150 à 300.

J'ai peut-être fait aussi deux ou trois autres manips mais je m'en souviens pas si c'est le cas.

Voici ce que tu demandes :

──▸ sudo a2query -s
[sudo] Mot de passe de skyern : 
owncloud (enabled by site administrator)
000-default (enabled by site administrator)
──▸ sudo a2query -c
serve-cgi-bin (enabled by maintainer script)
charset (enabled by maintainer script)
security (enabled by maintainer script)
localized-error-pages (enabled by maintainer script)
php7.4-fpm (enabled by site administrator)
other-vhosts-access-log (enabled by maintainer script)
──▸ sudo a2query -m 
deflate (enabled by maintainer script)
setenvif (enabled by maintainer script)
http2 (enabled by site administrator)
rewrite (enabled by site administrator)
socache_shmcb (enabled by site administrator)
ssl (enabled by site administrator)
proxy_http2 (enabled by site administrator)
autoindex (enabled by maintainer script)
proxy_fcgi (enabled by site administrator)
negotiation (enabled by maintainer script)
fcgid (enabled by maintainer script)
authn_file (enabled by maintainer script)
access_compat (enabled by maintainer script)
mpm_event (enabled by site administrator)
authz_core (enabled by maintainer script)
authz_host (enabled by maintainer script)
authn_core (enabled by maintainer script)
reqtimeout (enabled by maintainer script)
env (enabled by maintainer script)
proxy_wstunnel (enabled by site administrator)
headers (enabled by site administrator)
proxy_http (enabled by site administrator)
auth_basic (enabled by maintainer script)
proxy (enabled by site administrator)
status (enabled by maintainer script)
mime (enabled by maintainer script)
dir (enabled by maintainer script)
authz_user (enabled by maintainer script)
alias (enabled by maintainer script)
filter (enabled by maintainer script)

Hors ligne

#10 Le 28/03/2023, à 15:58

Sky3RN

Re : [RÉSOLU] Apache2 se coupe tout seul

C'est reparti en erreur au bout de 2h :

[Tue Mar 28 13:54:00.656254 2023] [mpm_event:notice] [pid 2548595:tid 140324462849088] AH00489: Apache/2.4.41 (Ubuntu) mod_fcgid/2.3.9 OpenSSL/1.1.1f configured -- resuming normal operations
[Tue Mar 28 13:54:00.656443 2023] [core:notice] [pid 2548595:tid 140324462849088] AH00094: Command line: '/usr/sbin/apache2'
[Tue Mar 28 15:44:23.760821 2023] [mpm_event:error] [pid 2548595:tid 140324462849088] AH00484: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting
[Tue Mar 28 15:45:19.529816 2023] [proxy_http:error] [pid 2548599:tid 140324030641920] (70007)The timeout specified has expired: [client 127.0.0.1:45476] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.530565 2023] [proxy:error] [pid 2548599:tid 140324030641920] [client 127.0.0.1:45476] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.585676 2023] [proxy_http:error] [pid 2548599:tid 140324013856512] (70007)The timeout specified has expired: [client 127.0.0.1:45478] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.585735 2023] [proxy:error] [pid 2548599:tid 140324013856512] [client 127.0.0.1:45478] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.586143 2023] [proxy_http:error] [pid 2548598:tid 140323577632512] (20014)Internal error (specific information not available): [client 127.0.0.1:45462] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.586298 2023] [proxy_http:error] [pid 2548599:tid 140324134344448] (20014)Internal error (specific information not available): [client 127.0.0.1:45460] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.586409 2023] [proxy_http:error] [pid 2548599:tid 140324022249216] (20014)Internal error (specific information not available): [client 127.0.0.1:45458] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.586513 2023] [proxy_http:error] [pid 2548599:tid 140324117542656] (20014)Internal error (specific information not available): [client 127.0.0.1:45456] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.586614 2023] [proxy_http:error] [pid 2548599:tid 140324005463808] (20014)Internal error (specific information not available): [client 127.0.0.1:45454] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.586709 2023] [proxy_http:error] [pid 2548599:tid 140323997071104] (20014)Internal error (specific information not available): [client 127.0.0.1:45452] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.586828 2023] [proxy_http:error] [pid 2548599:tid 140324125943552] (20014)Internal error (specific information not available): [client 127.0.0.1:46238] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.586842 2023] [proxy:error] [pid 2548599:tid 140324125943552] [client 127.0.0.1:46238] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.589065 2023] [proxy_http:error] [pid 2548598:tid 140323602810624] (70007)The timeout specified has expired: [client 127.0.0.1:45480] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.589097 2023] [proxy:error] [pid 2548598:tid 140323602810624] [client 127.0.0.1:45480] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.589659 2023] [proxy_http:error] [pid 2548598:tid 140324134344448] (70007)The timeout specified has expired: [client 127.0.0.1:45484] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.589676 2023] [proxy_http:error] [pid 2548598:tid 140324125943552] (70007)The timeout specified has expired: [client 127.0.0.1:45490] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.589683 2023] [proxy:error] [pid 2548598:tid 140324134344448] [client 127.0.0.1:45484] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.589692 2023] [proxy:error] [pid 2548598:tid 140324125943552] [client 127.0.0.1:45490] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.589811 2023] [proxy_http:error] [pid 2548599:tid 140323611203328] (70007)The timeout specified has expired: [client 127.0.0.1:45486] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.589840 2023] [proxy:error] [pid 2548599:tid 140323611203328] [client 127.0.0.1:45486] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.589844 2023] [proxy_http:error] [pid 2548599:tid 140323980285696] (70007)The timeout specified has expired: [client 127.0.0.1:45494] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.589882 2023] [proxy:error] [pid 2548599:tid 140323980285696] [client 127.0.0.1:45494] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.590023 2023] [proxy_http:error] [pid 2548598:tid 140324117542656] (70007)The timeout specified has expired: [client 127.0.0.1:45496] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.590041 2023] [proxy:error] [pid 2548598:tid 140324117542656] [client 127.0.0.1:45496] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.591805 2023] [proxy_http:error] [pid 2548599:tid 140323737028352] (70007)The timeout specified has expired: [client 127.0.0.1:45498] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.591836 2023] [proxy:error] [pid 2548599:tid 140323737028352] [client 127.0.0.1:45498] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.593683 2023] [proxy_http:error] [pid 2548599:tid 140323728635648] (70007)The timeout specified has expired: [client 127.0.0.1:45500] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.593715 2023] [proxy:error] [pid 2548599:tid 140323728635648] [client 127.0.0.1:45500] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.593775 2023] [proxy_http:error] [pid 2548599:tid 140323711850240] (70007)The timeout specified has expired: [client 127.0.0.1:45504] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.593795 2023] [proxy:error] [pid 2548599:tid 140323711850240] [client 127.0.0.1:45504] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.593684 2023] [proxy_http:error] [pid 2548598:tid 140324109141760] (70007)The timeout specified has expired: [client 127.0.0.1:45516] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.593914 2023] [proxy_http:error] [pid 2548599:tid 140323627988736] (70007)The timeout specified has expired: [client 127.0.0.1:45508] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.593933 2023] [proxy:error] [pid 2548599:tid 140323627988736] [client 127.0.0.1:45508] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.594045 2023] [proxy_http:error] [pid 2548598:tid 140323627988736] (70007)The timeout specified has expired: [client 127.0.0.1:45512] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.594063 2023] [proxy:error] [pid 2548598:tid 140323627988736] [client 127.0.0.1:45512] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.594076 2023] [proxy:error] [pid 2548598:tid 140324109141760] [client 127.0.0.1:45516] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.594189 2023] [proxy_http:error] [pid 2548599:tid 140323594417920] (70007)The timeout specified has expired: [client 127.0.0.1:45514] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.594207 2023] [proxy:error] [pid 2548599:tid 140323594417920] [client 127.0.0.1:45514] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.594337 2023] [proxy_http:error] [pid 2548598:tid 140323753813760] (70007)The timeout specified has expired: [client 127.0.0.1:45518] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.594394 2023] [proxy_http:error] [pid 2548598:tid 140323745421056] (70007)The timeout specified has expired: [client 127.0.0.1:45520] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.594435 2023] [proxy:error] [pid 2548598:tid 140323745421056] [client 127.0.0.1:45520] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.594471 2023] [proxy:error] [pid 2548598:tid 140323753813760] [client 127.0.0.1:45518] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.597678 2023] [proxy_http:error] [pid 2548598:tid 140323720242944] (70007)The timeout specified has expired: [client 127.0.0.1:45524] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.597678 2023] [proxy_http:error] [pid 2548598:tid 140323737028352] (70007)The timeout specified has expired: [client 127.0.0.1:45522] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.597740 2023] [proxy:error] [pid 2548598:tid 140323737028352] [client 127.0.0.1:45522] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.597788 2023] [proxy_http:error] [pid 2548598:tid 140323611203328] (70007)The timeout specified has expired: [client 127.0.0.1:45526] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.597810 2023] [proxy:error] [pid 2548598:tid 140323611203328] [client 127.0.0.1:45526] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.597850 2023] [proxy_http:error] [pid 2548598:tid 140323711850240] (70007)The timeout specified has expired: [client 127.0.0.1:45530] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.597862 2023] [proxy:error] [pid 2548598:tid 140323711850240] [client 127.0.0.1:45530] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.597930 2023] [proxy_http:error] [pid 2548598:tid 140323619596032] (70007)The timeout specified has expired: [client 127.0.0.1:45528] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.597942 2023] [proxy:error] [pid 2548598:tid 140323619596032] [client 127.0.0.1:45528] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.597942 2023] [proxy_http:error] [pid 2548598:tid 140322906543872] (70007)The timeout specified has expired: [client 127.0.0.1:45532] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.597958 2023] [proxy:error] [pid 2548598:tid 140322906543872] [client 127.0.0.1:45532] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.597988 2023] [proxy_http:error] [pid 2548598:tid 140322956900096] (70007)The timeout specified has expired: [client 127.0.0.1:45534] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.598001 2023] [proxy:error] [pid 2548598:tid 140322956900096] [client 127.0.0.1:45534] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.598127 2023] [proxy:error] [pid 2548598:tid 140323720242944] [client 127.0.0.1:45524] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.617675 2023] [proxy_http:error] [pid 2548598:tid 140322948507392] (70007)The timeout specified has expired: [client 127.0.0.1:45536] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.617675 2023] [proxy_http:error] [pid 2548598:tid 140322940114688] (70007)The timeout specified has expired: [client 127.0.0.1:45538] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.617728 2023] [proxy:error] [pid 2548598:tid 140322940114688] [client 127.0.0.1:45538] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.617885 2023] [proxy_http:error] [pid 2548598:tid 140322931721984] (70007)The timeout specified has expired: [client 127.0.0.1:45540] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.617928 2023] [proxy_http:error] [pid 2548598:tid 140323594417920] (70007)The timeout specified has expired: [client 127.0.0.1:45542] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.617968 2023] [proxy:error] [pid 2548598:tid 140323594417920] [client 127.0.0.1:45542] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.618007 2023] [proxy:error] [pid 2548598:tid 140322931721984] [client 127.0.0.1:45540] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.618332 2023] [proxy:error] [pid 2548598:tid 140322948507392] [client 127.0.0.1:45536] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.621691 2023] [proxy_http:error] [pid 2548599:tid 140323577632512] (70007)The timeout specified has expired: [client 127.0.0.1:45546] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.621691 2023] [proxy_http:error] [pid 2548599:tid 140323586025216] (70007)The timeout specified has expired: [client 127.0.0.1:45544] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.621730 2023] [proxy:error] [pid 2548599:tid 140323577632512] [client 127.0.0.1:45546] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.621737 2023] [proxy:error] [pid 2548599:tid 140323586025216] [client 127.0.0.1:45544] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.621960 2023] [proxy_http:error] [pid 2548599:tid 140324109141760] (70007)The timeout specified has expired: [client 127.0.0.1:45548] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.621978 2023] [proxy:error] [pid 2548599:tid 140324109141760] [client 127.0.0.1:45548] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.813720 2023] [proxy_http:error] [pid 2569812:tid 140324117542656] (70007)The timeout specified has expired: [client 127.0.0.1:45554] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.813698 2023] [proxy_http:error] [pid 2569812:tid 140324125943552] (70007)The timeout specified has expired: [client 127.0.0.1:45552] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.813773 2023] [proxy:error] [pid 2569812:tid 140324117542656] [client 127.0.0.1:45554] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.813782 2023] [proxy:error] [pid 2569812:tid 140324125943552] [client 127.0.0.1:45552] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.813955 2023] [proxy_http:error] [pid 2569812:tid 140324109141760] (70007)The timeout specified has expired: [client 127.0.0.1:45558] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.813979 2023] [proxy:error] [pid 2569812:tid 140324109141760] [client 127.0.0.1:45558] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.814024 2023] [proxy_http:error] [pid 2569812:tid 140323896424192] (70007)The timeout specified has expired: [client 127.0.0.1:45560] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.814083 2023] [proxy_http:error] [pid 2569812:tid 140323888031488] (70007)The timeout specified has expired: [client 127.0.0.1:45556] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.814105 2023] [proxy:error] [pid 2569812:tid 140323888031488] [client 127.0.0.1:45556] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.814177 2023] [proxy_http:error] [pid 2569812:tid 140323879638784] (70007)The timeout specified has expired: [client 127.0.0.1:45562] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.814235 2023] [proxy_http:error] [pid 2569812:tid 140323854460672] (70007)The timeout specified has expired: [client 127.0.0.1:45566] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.813702 2023] [proxy_http:error] [pid 2569812:tid 140322713609984] (70007)The timeout specified has expired: [client 127.0.0.1:45550] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.813739 2023] [proxy_http:error] [pid 2569812:tid 140323871246080] (70007)The timeout specified has expired: [client 127.0.0.1:45564] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.814323 2023] [proxy:error] [pid 2569812:tid 140323896424192] [client 127.0.0.1:45560] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.814354 2023] [proxy:error] [pid 2569812:tid 140323871246080] [client 127.0.0.1:45564] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.814503 2023] [proxy:error] [pid 2569812:tid 140322713609984] [client 127.0.0.1:45550] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.814565 2023] [proxy:error] [pid 2569812:tid 140323879638784] [client 127.0.0.1:45562] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.814601 2023] [proxy:error] [pid 2569812:tid 140323854460672] [client 127.0.0.1:45566] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.817680 2023] [proxy_http:error] [pid 2569812:tid 140323359553280] (70007)The timeout specified has expired: [client 127.0.0.1:45574] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.817694 2023] [proxy_http:error] [pid 2569812:tid 140323846067968] (70007)The timeout specified has expired: [client 127.0.0.1:45570] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.817733 2023] [proxy:error] [pid 2569812:tid 140323359553280] [client 127.0.0.1:45574] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.817739 2023] [proxy:error] [pid 2569812:tid 140323846067968] [client 127.0.0.1:45570] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.817733 2023] [proxy_http:error] [pid 2569812:tid 140323862853376] (70007)The timeout specified has expired: [client 127.0.0.1:45568] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.817761 2023] [proxy:error] [pid 2569812:tid 140323862853376] [client 127.0.0.1:45568] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.817860 2023] [proxy_http:error] [pid 2569812:tid 140323342767872] (70007)The timeout specified has expired: [client 127.0.0.1:45576] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.817879 2023] [proxy:error] [pid 2569812:tid 140323342767872] [client 127.0.0.1:45576] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.817887 2023] [proxy_http:error] [pid 2569812:tid 140324134344448] (70007)The timeout specified has expired: [client 127.0.0.1:45592] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.817904 2023] [proxy:error] [pid 2569812:tid 140324134344448] [client 127.0.0.1:45592] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.817858 2023] [proxy_http:error] [pid 2569812:tid 140322755573504] (70007)The timeout specified has expired: [client 127.0.0.1:45586] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.818004 2023] [proxy:error] [pid 2569812:tid 140322755573504] [client 127.0.0.1:45586] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.818023 2023] [proxy_http:error] [pid 2569812:tid 140323325982464] (70007)The timeout specified has expired: [client 127.0.0.1:45578] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.818048 2023] [proxy:error] [pid 2569812:tid 140323325982464] [client 127.0.0.1:45578] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.818078 2023] [proxy_http:error] [pid 2569812:tid 140323317589760] (70007)The timeout specified has expired: [client 127.0.0.1:45582] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.818098 2023] [proxy:error] [pid 2569812:tid 140323317589760] [client 127.0.0.1:45582] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.818203 2023] [proxy_http:error] [pid 2569812:tid 140323334375168] (70007)The timeout specified has expired: [client 127.0.0.1:45580] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.818233 2023] [proxy:error] [pid 2569812:tid 140323334375168] [client 127.0.0.1:45580] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.818048 2023] [proxy_http:error] [pid 2569812:tid 140323351160576] (70007)The timeout specified has expired: [client 127.0.0.1:45572] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.818461 2023] [proxy:error] [pid 2569812:tid 140323351160576] [client 127.0.0.1:45572] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.818578 2023] [proxy_http:error] [pid 2569812:tid 140322730395392] (70007)The timeout specified has expired: [client 127.0.0.1:45588] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.818691 2023] [proxy:error] [pid 2569812:tid 140322730395392] [client 127.0.0.1:45588] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.818823 2023] [proxy_http:error] [pid 2569812:tid 140323309197056] (70007)The timeout specified has expired: [client 127.0.0.1:45584] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.818848 2023] [proxy:error] [pid 2569812:tid 140323309197056] [client 127.0.0.1:45584] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.837720 2023] [proxy_http:error] [pid 2569812:tid 140322621355776] (70007)The timeout specified has expired: [client 127.0.0.1:45594] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.837773 2023] [proxy:error] [pid 2569812:tid 140322621355776] [client 127.0.0.1:45594] AH00898: Error reading from remote server returned by /
[Tue Mar 28 15:45:19.838008 2023] [proxy_http:error] [pid 2569812:tid 140322738788096] (70007)The timeout specified has expired: [client 127.0.0.1:45598] AH01102: error reading status line from remote server localhost:80
[Tue Mar 28 15:45:19.838040 2023] [proxy:error] [pid 2569812:tid 140322738788096] [client 127.0.0.1:45598] AH00898: Error reading from remote server returned by /

J'pense que ça vient de mon Reverse Proxy, non ? J'ai dû bien me foirer quelque part.

Dernière modification par Sky3RN (Le 28/03/2023, à 16:03)

Hors ligne

#11 Le 28/03/2023, à 16:01

bruno

Re : [RÉSOLU] Apache2 se coupe tout seul

Ok tu as deux hôtes virtuels celui par défaut /etc/apache2/sites-available/000-default.conf et celui pour owncloud /etc/apache2/sites-available/owncloud.conf

On va dire que celui par défaut répond au nom de domaine www.example.com et sert ton site via le proxy (il faudra préciser le pourquoi de cette configuration plus tard)

/etc/apache2/sites-available/000-default.conf ne devrait contenir que ceci :

<VirtualHost *:80>

	ServerAdmin webmaster@example.com
	ServerName example.com
        ServerAlias www.example.com

	ProxyPreserveHost On
	ProxyRequests Off
	ProxyPass / http://192.168.0.12:800/
	ProxyPassReverse / http://192.168.0.12:800/

	ErrorLog ${APACHE_LOG_DIR}/error.log
	CustomLog ${APACHE_LOG_DIR}/access.log combined

</VirtualHost>

/etc/apache2/sites-available/owncloud.conf ne devrait contenir que ceci :

<VirtualHost *:80>
    ServerName owncloud.example.com
    DocumentRoot /var/www/owncloud

    # on redirige tout le trafic en HTTPS. Attention le / terminal est important !
    Redirect permanent / https://owncloud.example.com/

</VirtualHost>


<VirtualHost *:443>
    ServerName owncloud.example.com
    DocumentRoot /var/www/owncloud

    <Directory /var/www/owncloud/>
        Options -Indexes +FollowSymlinks
        AllowOverride All

        <IfModule mod_dav.c>
            Dav off
        </IfModule>

       SetEnv HOME /var/www/owncloud
       SetEnv HTTP_HOME /var/www/owncloud
    </Directory>

    SSLEngine on
    Include /etc/letsencrypt/options-ssl-apache.conf

    SSLCertificateFile /etc/letsencrypt/live/MON_URL/fullchain.pem
    SSLCertificateKeyFile /etc/letsencrypt/live/MON_URL/privkey.pem

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

</VirtualHost>

Redémarrer Apache après modification.

P.S. cela pourrait être encor plus simple si tu expliques à quoi correspond http://192.168.0.12:800/. Est-ce l'adresse IP locale du serveur. Comment et pourquoi un service web en écoute sur le port 800 ?

Hors ligne

#12 Le 28/03/2023, à 16:22

Sky3RN

Re : [RÉSOLU] Apache2 se coupe tout seul

OK je comprends mieux ! Je vais tester, voir si ça règle le souci (à tester sur le long-terme évidemment).

bruno a écrit :

P.S. cela pourrait être encor plus simple si tu expliques à quoi correspond http://192.168.0.12:800/. Est-ce l'adresse IP locale du serveur. Comment et pourquoi un service web en écoute sur le port 800 ?

La machine qui contient OwnCloud c'est 192.168.0.15 le port 80 est ouvert sur ma box pour cette IP, du coup impossible d'ouvrir le 80 pour une autre IP donc j'ai ouvert un port 800 pour rediriger vers l'ordi qui contient mon site en local (192.168.0.12).

Le site local n'a pas pour but d'être visible officiellement depuis Internet mais j'ai besoin de cette redirection pour quand je bosse dessus à distance ou quand je veux montrer les modifs à des collègues. Avant de tout envoyer sur le vrai serveur du site.

Donc pour résumer, pour te faire un schéma, on va dire que j'ai :
www.example.com => Mon site web, l'officiel, hébergé chez Power-Heberg
www1.example.com => Ma machine chez moi avec OwnCloud, donc redirection vers l'IP de ma box + port 80 (192.168.0.15)
www2.example.com => Ma machine chez moi qui héberge la version "locale" de mon site, IP de ma box + port 800 (192.168.0.12)

C'est sur www1 que j'ai toute la config Apache contenant ces confs que tu as pu voir, et donc le Reverse Proxy.

Ce qui sous entend que quand on va sur www1.example.com ou www2.example.com on arrive par défaut sur 192.168.0.15 qui se charge rediriger vers les bons endroits, à savoir www1 vers 192.168.0.15 et www2 vers 192.168.0.12 !

Dernière modification par Sky3RN (Le 28/03/2023, à 16:32)

Hors ligne

#13 Le 28/03/2023, à 16:32

bruno

Re : [RÉSOLU] Apache2 se coupe tout seul

Ok, si ce n'est pas la même machine mais un autre serveur avec Apache , le changement de port n'était pas utile. Mais si cela fonctionne ainsi inutile de changer.

La machine ayant l'IP 192.168.0.12 peut avoir une config Apache standard en écoute sur le port 80

Et l'hôte virtuel sur 192.168.0.15 (qui est le frontal web)  se charge de rediriger avec :

ProxyPass / http://192.168.0.12
ProxyPassReverse / http://192.168.0.12

Hors ligne

#14 Le 28/03/2023, à 16:34

Sky3RN

Re : [RÉSOLU] Apache2 se coupe tout seul

bruno a écrit :

Ok, si ce n'est pas la même machine mais un autre serveur avec Apache , le changement de port n'était pas utile. Mais si cela fonctionne ainsi inutile de changer.

La machine ayant l'IP 192.168.0.12 peut avoir une config Apache standard en écoute sur le port 80

Et l'hôte virtuel sur 192.168.0.15 (qui est le frontal web)  se charge de rediriger avec :

ProxyPass / http://192.168.0.12
ProxyPassReverse / http://192.168.0.12

D'acc, dans le doute je laisse tel quel ! C'est pas un souci pour le moment, ça fait ce que je lui demande, ma priorité c'est de faire en sorte que le Apache principal ne merde plus puisque je m'en sers pour transférer des gros rushs avec mes clients (je bosse dans l'audiovisuel).

Le truc chiant c'est qu'entre deux modifs je dois parfois attendre plusieurs heures voire toute une nuit et scruter les logs pour voir ce qu'il en est.

Hors ligne

#15 Le 28/03/2023, à 16:44

bruno

Re : [RÉSOLU] Apache2 se coupe tout seul

Normalement si cela fonctionne avec la config que j'ai indiquée, tu ne devrais plus avoir de soucis. En tous cas tu ne dois plus observer d'erreurs dans les logs d'apache concernant le proxy, et ça tu peux le voir immédiatement en te connectant à ton site et en regardant les logs.

Dernière modification par bruno (Le 28/03/2023, à 16:45)

Hors ligne

#16 Le 28/03/2023, à 16:50

Sky3RN

Re : [RÉSOLU] Apache2 se coupe tout seul

Je te remercie pour ton aide. smile

Mais c'est à tester sur le long-terme, puisque tout à l'heure aussi je pensais avoir résolu mon souci et au bout de 2h d'utilisation j'ai eu des erreurs !
Pour le moment c'est clean.

Hors ligne

#17 Le 29/03/2023, à 11:04

Sky3RN

Re : [RÉSOLU] Apache2 se coupe tout seul

Bon eh bien je pense que c'est résolu. Merci encore @bruno !

Ça tourne nickel depuis plus de 12h. J'ai dû redémarrer Apache entre-temps pour y ajouter une nouvelle config à mon Reverse Proxy parce qu'en tapant mon IP on arrivait directement sur mon site local au lieu du cloud, or je veux que le site local soit accessible uniquement via la redirection sous-domaine, donc ça je l'ai réglé de moi-même.

Dans les logs, depuis hier 21:36 j'ai que ça :

[Wed Mar 29 00:00:03.057279 2023] [mpm_event:notice] [pid 2634142:tid 140628867820608] AH00493: SIGUSR1 received.  Doing graceful restart

Et il semblerait que c'est tout à fait normal, c'est la rotation de log une fois minuit passé.

Top. Hashtag pouce en l'air.

Hors ligne

#18 Le 04/04/2023, à 11:47

Sky3RN

Re : [RÉSOLU] Apache2 se coupe tout seul

Hello,

Juste pour vous donner des news : Tout fonctionne très bien depuis. Aucune coupure à déclarer, des logs quasiment clean.

Par contre j'ai remarqué que depuis ça mes téléchargements locaux sont très longs.

Exemple : Je prends un fichier de mon cloud, ou de mon FTP local, si je le télécharge depuis mon réseau je suis à ~500 Ko/sec (pourtant j'ai la fibre, 100 en download, 60 en upload), si je télécharge avec mon téléphone en 5G ce même fichier : 5 Mo/sec.
Quand j'ai réinstallé Apache2 j'ai sûrement dû faire sauter un truc dans la config qui concerne le débit, non ? Et si oui, je retrouve pas quoi..

Hors ligne

#19 Le 14/04/2023, à 19:51

Sky3RN

Re : [RÉSOLU] Apache2 se coupe tout seul

Sky3RN a écrit :

Par contre j'ai remarqué que depuis ça mes téléchargements locaux sont très longs.

Idem pour les uploads.

Je sais pas si on peut régler ça quelque part ?

Hors ligne