Nextcloud internal server error - no clues in the logs

This forum is for discussion about general software issues.

Nextcloud internal server error - no clues in the logs

Postby philipn » Sat Feb 04, 2023 11:55 am

My Nextcloud installation broke after a recent upgrade and after chasing it fruitlessly for a long time, I deleted most of it and did what I thought was a clean install. However, I have a working database with a lot of wanted data on so I avoided re-initialising this.

I have reached the stage where occ operations (e.g. update) appear to work fine. Nextcloud-cron appears to work fine (via the timer). uwsgi looks to be running OK and so does postgresql. However, web requests get 500 Internal Server Error response. Looking through all the logs I can find, I am unable to see any indication of what is causing the error. I have tried to turn on more verbose logging but it doesn't make much difference. I previously tried with fpm instead of uwsgi but ran into exactly the same issues.

Nextcloud is the only real service Apache is serving on this system (at myhost.local/nextcloud/) but I have a basic html page at myhost.local/ which is served fine over both HTTP and HTTPS so it doesn't look like an SSL issue.

One thing I find unclear is where PHP gets it's config from. The Wiki says that /etc/webapps/nextcloud/php.ini is "for the occ command line tool and the background job" (which background-job? nextcloud-cron.service? where is the config which tells it to use this version?). Where does PHP initialise from when httpd is serving nextcloud apps? Is it entirely configured by the "php-set" commands in /etc/uwsgi/nextcloud.ini or are there other configs involved?

Any suggestions for the server errors? I have spent an awful lot of time trying to trace this.

Details:
Linux 5.10.81-1-raspberrypi-ARCH #1 SMP
nextcloud 25.0.3-1
postgresql 14.6-2
uwsgi 2.0.21-5
apache 2.4.55-1

/etc/httpd/httpd.config (comment lines removed. Included files are unchanged from the distro)
$this->bbcode_second_pass_code('', '
ServerRoot "/etc/httpd"
Listen 80
LoadModule mpm_event_module modules/mod_mpm_event.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authn_core_module modules/mod_authn_core.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule authz_core_module modules/mod_authz_core.so
LoadModule access_compat_module modules/mod_access_compat.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
LoadModule reqtimeout_module modules/mod_reqtimeout.so
LoadModule include_module modules/mod_include.so
LoadModule filter_module modules/mod_filter.so
LoadModule xml2enc_module modules/mod_xml2enc.so
LoadModule proxy_html_module modules/mod_proxy_html.so
LoadModule mime_module modules/mod_mime.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule env_module modules/mod_env.so
LoadModule headers_module modules/mod_headers.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule version_module modules/mod_version.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_uwsgi_module modules/mod_proxy_uwsgi.so
LoadModule slotmem_shm_module modules/mod_slotmem_shm.so
LoadModule ssl_module modules/mod_ssl.so
LoadModule unixd_module modules/mod_unixd.so
LoadModule status_module modules/mod_status.so
LoadModule autoindex_module modules/mod_autoindex.so
<IfModule !mpm_prefork_module>
#LoadModule cgid_module modules/mod_cgid.so
</IfModule>
<IfModule mpm_prefork_module>
#LoadModule cgi_module modules/mod_cgi.so
</IfModule>
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule dir_module modules/mod_dir.so
LoadModule userdir_module modules/mod_userdir.so
LoadModule alias_module modules/mod_alias.so
LoadModule rewrite_module modules/mod_rewrite.so
<IfModule unixd_module>
User http
Group http
</IfModule>
ServerAdmin you@example.com
ServerName myhost:80
<Directory />
AllowOverride none
Require all denied
</Directory>
DocumentRoot "/srv/http"
<Directory "/srv/http">
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
<Files ".ht*">
Require all denied
</Files>
ErrorLog "/var/log/httpd/error_log"
LogLevel warn
<IfModule log_config_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
CustomLog "/var/log/httpd/access_log" common
</IfModule>
<IfModule alias_module>
ScriptAlias /cgi-bin/ "/srv/http/cgi-bin/"
</IfModule>
<IfModule cgid_module>
</IfModule>
<Directory "/srv/http/cgi-bin">
AllowOverride None
Options None
Require all granted
</Directory>
<IfModule headers_module>
RequestHeader unset Proxy early
</IfModule>
<IfModule mime_module>
TypesConfig conf/mime.types
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
</IfModule>
Include conf/extra/httpd-mpm.conf
Include conf/extra/httpd-multilang-errordoc.conf
Include conf/extra/httpd-autoindex.conf
Include conf/extra/httpd-languages.conf
Include conf/extra/httpd-userdir.conf
Include conf/extra/httpd-default.conf
<IfModule proxy_html_module>
Include conf/extra/proxy-html.conf
</IfModule>
Include conf/extra/httpd-ssl.conf
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
Alias /nextcloud /usr/share/webapps/nextcloud
<Directory /usr/share/webapps/nextcloud>
Require all granted
AllowOverride All
Options FollowSymLinks MultiViews
DirectoryIndex index.php index.html
<IfModule mod_dav.c>
Dav off
</IfModule>
<FilesMatch \.php$>
SetHandler "proxy:unix:/run/uwsgi/nextcloud.sock|uwsgi://nextcloud/"
</FilesMatch>
</Directory>
')

/etc/uwsgi/nextcloud.ini
$this->bbcode_second_pass_code('', '
[uwsgi]
; modified as in https://gist.github.com/wolegis/fc0c01882b694777a6565aa1d0a4da47
procname-master = uwsgi %n
plugins = php_legacy
master = true
php-sapi-name = apache

;socket = /run/%n/%n.sock
socket = /run/uwsgi/%n.sock
# uncomment for a stats socket, that can be used with uwsgitop
# stats = /run/%n/%n-stats.sock
# cleanup sockets when uWSGI terminates
vacuum = true

uid = nextcloud
gid = nextcloud

# make sockets read-/writeable only by user nextcloud and web server
chown-socket = %(uid):http
chmod-socket = 660

# files created by Nextcloud code only writeable by user nextcloud
umask = 022

cheaper = 1
processes = 10
;cheaper = 4
cheaper-step = 1
idle = 600
die-on-idle = true

; reload whenever this config file changes
touch-reload = %p

# request logging is usually already done by the web server
disable-logging = false

cloud_data_dir = /var/lib/nextcloud/data
cloud_writable_apps_dir = /var/lib/nextcloud/apps
chdir = %(cloud_data_dir)

php-allowed-ext = .php
php-docroot = /usr/share/webapps/%n
php-index = index.php
php-set = date.timezone=Europe/London
; php-set = open_basedir=%(cloud_data_dir):%(cloud_writable_apps_dir):/var/lib/%n:/tmp/:/usr/share/webapps/%n:/etc/webapps/%n:/dev/urandom:/usr/lib/php-legacy/modules:/run/redis/redis.sock:/var/log/%n/%n.log:/proc/meminfo
php-set = session.save_path=/var/lib/%n/sessions
php-set = session.gc_maxlifetime 21600
php-set = session.gc_divisor 500
php-set = session.gc_probability 1

; added
php-set = expose_php=false

php-set = post_max_size=1000M
php-set = upload_max_filesize=1000M

# as recommended in admin manual (avoids related warning in admin GUI later)
php-set = output_buffering=off
php-set = always_populate_raw_post_data=-1
php-set = max_input_time=120
php-set = max_execution_time=60

php-set = memory_limit=768M

php-set = zend_extension=opcache
php-set = opcache.enable=1
# remove (see https://github.com/nextcloud/server/pull/15468)
# php-set = opcache.enable_cli=1
php-set = opcache.interned_strings_buffer=8
php-set = opcache.max_accelerated_files=10000
php-set = opcache.memory_consumption=128
php-set = opcache.save_comments=1
php-set = opcache.revalidate_freq=1

# uncomment if php-apcu is installed and used
php-set = extension=apcu
php-set = extension=bcmath
php-set = extension=bz2
# already enabled in standard php.ini. no need to enable it here again
; php-set = extension=curl
php-set = extension=exif
# extension ftp is very likely not used
; php-set = extension=ftp
php-set = extension=gd
php-set = extension=gmp
# uncomment if php-imagick is installed and used
# php-set = extension=imagick
# uncomment if php-imap is installed and used
; php-set = extension=imap
# uncomment if php-intl is installed and used
php-set = extension=intl
php-set = extension=iconv
# extension ldap is very likely not used
; php-set = extension=ldap
# uncomment if php-memcached is installed and used
# php-set = extension=memcached
# php-set = extension=pdo_mysql
# uncomment if php-pgsql is installed and used
php-set = extension=pdo_pgsql
# php-set = extension=pdo_sqlite
# uncomment if php-igbinary is installed and used
# php-set = extension=igbinary
# uncomment if php-redis is installed and used (requires php-igbinary)
# php-set = extension=redis
# no docs anywhere that recommend this extension
# php-set = extension=sockets
# uncomment if php-xsl is installed and used
# php-set = extension=xsl
php-set = extension=zip
# php-set = extension=pgsql

# change the URL to your own address and uncomment to run a webcron job every five minutes
# cron = -5 -1 -1 -1 -1 curl --silent https://change.me.tld/cron.php 1>/dev/null
# uncomment to run a cron job every five minutes
# cron = -5 -1 -1 -1 -1 php-legacy -f /usr/share/webapps/%n/cron.php
env = front_controller_active=true

php-set = display_errors=On
# php-set = log_errors=On
php-set = display_startup_errors=On
php-set = error_reporting=E_ALL

; Allow or prevent persistent links.
; https://php.net/pgsql.allow-persistent
php-set = pgsql.allow_persistent = On

; Detect broken persistent links always with pg_pconnect().
; Auto reset feature requires a little overheads.
; https://php.net/pgsql.auto-reset-persistent
php-set = pgsql.auto_reset_persistent = Off

; Maximum number of persistent links. -1 means no limit.
; https://php.net/pgsql.max-persistent
php-set = pgsql.max_persistent = -1

; Maximum number of links (persistent+non persistent). -1 means no limit.
; https://php.net/pgsql.max-links
php-set = pgsql.max_links = -1

; Ignore PostgreSQL backends Notice message or not.
; Notice message logging require a little overheads.
; https://php.net/pgsql.ignore-notice
php-set = pgsql.ignore_notice = 0

; Log PostgreSQL backends Notice message or not.
; Unless pgsql.ignore_notice=0, module cannot log notice message.
; https://php.net/pgsql.log-notice
php-set = pgsql.log_notice = 0
')

/etc/webapps/nextcloud/php.ini (comment lines removed)
$this->bbcode_second_pass_code('', '
[PHP]
engine = On
short_open_tag = Off
precision = 14
output_buffering = 4096
zlib.output_compression = Off
implicit_flush = Off
unserialize_callback_func =
serialize_precision = -1
disable_functions =
disable_classes =
zend.enable_gc = On
zend.exception_ignore_args = On
zend.exception_string_param_max_len = 0
expose_php = On
max_execution_time = 30
max_input_time = 60
memory_limit = 512M
error_reporting = E_ALL
display_errors = On
display_startup_errors = On
log_errors = On
ignore_repeated_errors = Off
ignore_repeated_source = Off
report_memleaks = On
variables_order = "GPCS"
request_order = "GP"
register_argc_argv = Off
auto_globals_jit = On
post_max_size = 8M
auto_prepend_file =
auto_append_file =
default_mimetype = "text/html"
default_charset = "UTF-8"
doc_root =
user_dir =
extension_dir = "/usr/lib/php-legacy/modules/"
enable_dl = Off
file_uploads = On
upload_max_filesize = 2M
max_file_uploads = 20
allow_url_fopen = On
allow_url_include = Off
default_socket_timeout = 60
extension=bcmath
extension=bz2
extension=curl
extension=exif
extension=gd
extension=iconv
extension=intl
extension=pdo_pgsql
extension=zip
extension=apcu
[CLI Server]
cli_server.color = On
[Date]
date.timezone = Europe/London
[filter]
[iconv]
[imap]
[intl]
[sqlite3]
[Pcre]
[Pdo]
[Pdo_mysql]
pdo_mysql.default_socket=
[Phar]
[mail function]
SMTP = localhost
smtp_port = 25
mail.add_x_header = Off
[ODBC]
odbc.allow_persistent = On
odbc.check_persistent = On
odbc.max_persistent = -1
odbc.max_links = -1
odbc.defaultlrl = 4096
odbc.defaultbinmode = 1
[MySQLi]
mysqli.max_persistent = -1
mysqli.allow_persistent = On
mysqli.max_links = -1
mysqli.default_port = 3306
mysqli.default_socket =
mysqli.default_host =
mysqli.default_user =
mysqli.default_pw =
mysqli.reconnect = Off
[mysqlnd]
mysqlnd.collect_statistics = On
mysqlnd.collect_memory_statistics = Off
[OCI8]
[PostgreSQL]
pgsql.allow_persistent = On
pgsql.auto_reset_persistent = Off
pgsql.max_persistent = -1
pgsql.max_links = -1
pgsql.ignore_notice = 0
pgsql.log_notice = 0
[bcmath]
bcmath.scale = 0
[browscap]
[Session]
session.save_handler = files
session.use_strict_mode = 0
session.use_cookies = 1
session.use_only_cookies = 1
session.name = PHPSESSID
session.auto_start = 0
session.cookie_lifetime = 0
session.cookie_path = /
session.cookie_domain =
session.cookie_httponly =
session.cookie_samesite =
session.serialize_handler = php
session.gc_probability = 1
session.gc_divisor = 1000
session.gc_maxlifetime = 1440
session.referer_check =
session.cache_limiter = nocache
session.cache_expire = 180
session.use_trans_sid = 0
session.sid_length = 26
session.trans_sid_tags = "a=href,area=href,frame=src,form="
session.sid_bits_per_character = 5
[Assertion]
zend.assertions = -1
[COM]
[mbstring]
[gd]
[exif]
[Tidy]
tidy.clean_output = Off
[soap]
soap.wsdl_cache_enabled=1
soap.wsdl_cache_dir="/tmp"
soap.wsdl_cache_ttl=86400
soap.wsdl_cache_limit = 5
[sysvshm]
[ldap]
ldap.max_links = -1
[dba]
[opcache]
[curl]
[openssl]
[ffi]
[apcu]
apc.ttl=7200
apc.enable_cli = 1
')

/etc/webapps/nextcloud/config/config.php
$this->bbcode_second_pass_code('', '
<?php
$CONFIG = array (
'debug' => true,
'datadirectory' => '/var/lib/nextcloud/data',
'log_type' => 'file',
'log_type_audit' => 'file',
'logfile_audit' => '/var/log/nextcloud/audit.log',
'loglevel' => 0,
'logfile' => '/var/log/nextcloud/nextcloud.log',
'apps_paths' =>
array (
0 =>
array (
'path' => '/usr/share/webapps/nextcloud/apps',
'url' => '/apps',
'writable' => false,
),
1 =>
array (
'path' => '/var/lib/nextcloud/apps',
'url' => '/wapps',
'writable' => true,
),
),
'trusted_domains' =>
array (
0 => 'localhost',
1 => 'myhost',
2 => 'myhost.local',
3 => '192.168.1.10',
),
'instanceid' => 'xxxxxxxxxxxx',
'overwrite.cli.url' => 'https://myhost.local/nextcloud',
'htaccess.RewriteBase' => '/nextcloud',
'passwordsalt' => 'xxxxxxxxxxxxxxxxxxxxxxx/xxxxxx',
'secret' => 'x/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxx',
'dbtype' => 'pgsql',
'version' => '25.0.3.2',
'dbname' => 'nextcloud',
'dbhost' => '/run/postgresql/',
'dbport' => '',
'dbtableprefix' => 'oc_',
'dbuser' => 'nextcloud',
'dbpassword' => 'xxxxxxxxxxxxxxx',
'memcache.local' => '\\OC\\Memcache\\APCu',
'installed' => true,
'theme' => '',
'maintenance' => false,
);
')

$ ls -l /var/lib/nextcloud/
total 12
drwxr-xr-x 4 nextcloud nextcloud 4096 Jan 31 10:21 apps
drwxrwx--- 5 nextcloud nextcloud 4096 Jan 30 17:47 data
drwx------ 2 nextcloud nextcloud 4096 Jan 25 17:08 sessions

$ ls -Al /run/uwsgi/
total 0
srw-rw---- 1 nextcloud http 0 Feb 3 12:36 nextcloud.sock

Nextcloud log just shows regular cron jobs:
$this->bbcode_second_pass_code('', '
$ sudo tail -n20 /var/log/nextcloud/nextcloud.log
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:03+00:00","remoteAddr":"","user":"--","app":"cron","method":"","url":"--","message":"CLI cron call has selected job with ID 4","userAgent":"--","version":"25.0.3.2","data":{"app":"cron"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:03+00:00","remoteAddr":"","user":"--","app":"cron","method":"","url":"--","message":"Run OCA\\Files\\BackgroundJob\\CleanupFileLocks job with ID 4","userAgent":"--","version":"25.0.3.2","data":{"app":"cron"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:03+00:00","remoteAddr":"","user":"--","app":"cron","method":"","url":"--","message":"Finished OCA\\Files\\BackgroundJob\\CleanupFileLocks job with ID 4 in 0 seconds","userAgent":"--","version":"25.0.3.2","data":{"app":"cron"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:03+00:00","remoteAddr":"","user":"--","app":"cron","method":"","url":"--","message":"CLI cron call has selected job with ID 3","userAgent":"--","version":"25.0.3.2","data":{"app":"cron"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:03+00:00","remoteAddr":"","user":"--","app":"cron","method":"","url":"--","message":"CLI cron call has selected job with ID 40","userAgent":"--","version":"25.0.3.2","data":{"app":"cron"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:03+00:00","remoteAddr":"","user":"--","app":"cron","method":"","url":"--","message":"CLI cron call has selected job with ID 157","userAgent":"--","version":"25.0.3.2","data":{"app":"cron"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:03+00:00","remoteAddr":"","user":"--","app":"cron","method":"","url":"--","message":"CLI cron call has selected job with ID 9","userAgent":"--","version":"25.0.3.2","data":{"app":"cron"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:04+00:00","remoteAddr":"","user":"--","app":"cron","method":"","url":"--","message":"CLI cron call has selected job with ID 13","userAgent":"--","version":"25.0.3.2","data":{"app":"cron"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:04+00:00","remoteAddr":"","user":"--","app":"cron","method":"","url":"--","message":"CLI cron call has selected job with ID 7","userAgent":"--","version":"25.0.3.2","data":{"app":"cron"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:04+00:00","remoteAddr":"","user":"--","app":"cron","method":"","url":"--","message":"CLI cron call has selected job with ID 5","userAgent":"--","version":"25.0.3.2","data":{"app":"cron"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:04+00:00","remoteAddr":"","user":"--","app":"cron","method":"","url":"--","message":"CLI cron call has selected job with ID 146","userAgent":"--","version":"25.0.3.2","data":{"app":"cron"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:04+00:00","remoteAddr":"","user":"--","app":"cron","method":"","url":"--","message":"Run OCA\\Notifications\\BackgroundJob\\SendNotificationMails job with ID 146","userAgent":"--","version":"25.0.3.2","data":{"app":"cron"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:04+00:00","remoteAddr":"","user":"--","app":"cron","method":"","url":"--","message":"Finished OCA\\Notifications\\BackgroundJob\\SendNotificationMails job with ID 146 in 0 seconds","userAgent":"--","version":"25.0.3.2","data":{"app":"cron"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:04+00:00","remoteAddr":"","user":"--","app":"cron","method":"","url":"--","message":"CLI cron call has selected job with ID 41","userAgent":"--","version":"25.0.3.2","data":{"app":"cron"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:04+00:00","remoteAddr":"","user":"--","app":"cron","method":"","url":"--","message":"CLI cron call has selected job with ID 106","userAgent":"--","version":"25.0.3.2","data":{"app":"cron"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:04+00:00","remoteAddr":"","user":"--","app":"cron","method":"","url":"--","message":"CLI cron call has selected job with ID 12","userAgent":"--","version":"25.0.3.2","data":{"app":"cron"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:04+00:00","remoteAddr":"","user":"--","app":"cron","method":"","url":"--","message":"Run OCA\\Text\\Cron\\Cleanup job with ID 12","userAgent":"--","version":"25.0.3.2","data":{"app":"cron"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:04+00:00","remoteAddr":"","user":"--","app":"text","method":"","url":"--","message":"Run cleanup job for text sessions","userAgent":"--","version":"25.0.3.2","data":{"app":"text"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:04+00:00","remoteAddr":"","user":"--","app":"text","method":"","url":"--","message":"Removed 0 inactive sessions","userAgent":"--","version":"25.0.3.2","data":{"app":"text"}}
{"reqId":"BbexJmbIKeoanlqXeCCP","level":0,"time":"2023-02-03T12:57:04+00:00","remoteAddr":"","user":"--","app":"cron","method":"","url":"--","message":"Finished OCA\\Text\\Cron\\Cleanup job with ID 12 in 0 seconds","userAgent":"--","version":"25.0.3.2","data":{"app":"cron"}}
')

$ cat /var/log/httpd/error_log
[Fri Feb 03 14:29:12.041009 2023] [mpm_event:notice] [pid 7872:tid 1995923104] AH00489: Apache/2.4.55 (Unix) OpenSSL/3.0.7 configured -- resuming normal operations
[Fri Feb 03 14:29:12.042020 2023] [core:notice] [pid 7872:tid 1995923104] AH00094: Command line: '/usr/bin/httpd -D FOREGROUND'


$ cat /var/log/httpd/access_log
192.168.155.8 - - [03/Feb/2023:14:30:59 +0000] "GET /nextcloud/index.php HTTP/1.1" 500 1011
192.168.155.8 - - [03/Feb/2023:14:32:00 +0000] "GET /nextcloud/index.php HTTP/1.1" 500 1011
192.168.155.8 - - [03/Feb/2023:14:32:04 +0000] "GET /nextcloud/index.php HTTP/1.1" 500 1011

$ cat /var/log/httpd/ssl_request_log
[03/Feb/2023:14:30:59 +0000] 192.168.155.8 TLSv1.3 TLS_AES_256_GCM_SHA384 "GET /nextcloud/index.php HTTP/1.1" 1011
[03/Feb/2023:14:32:00 +0000] 192.168.155.8 TLSv1.3 TLS_AES_256_GCM_SHA384 "GET /nextcloud/index.php HTTP/1.1" 1011
[03/Feb/2023:14:32:04 +0000] 192.168.155.8 TLSv1.3 TLS_AES_256_GCM_SHA384 "GET /nextcloud/index.php HTTP/1.1" 1011
philipn
 
Posts: 1
Joined: Fri Feb 03, 2023 8:40 pm

Return to General

Who is online

Users browsing this forum: No registered users and 24 guests