Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

High CPU Load 'pihole-FTL -f' #2129

Open
b0se opened this issue Dec 6, 2024 · 27 comments
Open

High CPU Load 'pihole-FTL -f' #2129

b0se opened this issue Dec 6, 2024 · 27 comments

Comments

@b0se
Copy link

b0se commented Dec 6, 2024

Versions

Core
Version is v5.18.3-549-g03932e8c (Latest: null)
Branch is development
Hash is 03932e8c (Latest: 03932e8c)
Web
Version is v5.21-1034-g8cd680e1 (Latest: null)
Branch is development
Hash is 8cd680e1 (Latest: 8cd680e1)
FTL
Version is vDev-707280c (Latest: null)
Branch is development
Hash is 707280c (Latest: 707280c)

Platform

DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=24.04
DISTRIB_CODENAME=noble
DISTRIB_DESCRIPTION="Ubuntu 24.04.1 LTS"

pihole runs in a lxc- container. with no reglementations. (cpu,ram, hdd etc.)

Actual behavior / bug

I installed today the newest ftl update via pihole -up. Since then, the cpu usage from pihole-ftl is higher than normal.

Debug Token

Screenshots

Image
Image

after some time...

Image
Image

@DL6ER
Copy link
Member

DL6ER commented Dec 6, 2024

Please enable "custom thread names" in htop so we can see which of the parts of pihole-FTL is consuming all the CPU:

Image

@b0se
Copy link
Author

b0se commented Dec 7, 2024

Sure...

Image

@DL6ER
Copy link
Member

DL6ER commented Dec 7, 2024

Okay, so the workload is actually in the webworkers, i.e., the API. Are you actively using the web interface at this time? It may be helpful to enable API debugging which will print an access log to /var/log/pihole/webserver.log:

sudo pihole-FTL --config debug.api true

@b0se
Copy link
Author

b0se commented Dec 7, 2024

I have to stop and start the lxc container. Because i cant use pihole, when the cpu load is so high. After restarting the container everything is normal. But, when i start using the admin interface, just for looking, the cpu load rises. Not really fast, but percent by percent. So, i can confirm that.

I enabled the debug.api and see a lot of "access". What exactly are you looking for?

@DL6ER
Copy link
Member

DL6ER commented Dec 7, 2024

I'd first reduce the number of cores you have assigned to the container, this will make debugging probably a bit easier as there is less parallelism (as in: fewer concurrent threads) going on. Probably simpler than evaluating the access log: Since you have activated the API debugging mode, you'll also see many diagnosis lines in /var/log/pihole/FTL.log all starting in DEBUG_API. These lines also include the process and thread ID, like:

2024-12-07 10:11:36.075 CET [422/T467] DEBUG_API: Processing GET /api/info/login in /api/info/login
2024-12-07 10:11:36.075 CET [422/T467] DEBUG_API: Done

You can get the thread IDs from the square bracket notation, e.g. [422/T467] means "mother process 422, Thread 467". You can now go to htop, identify the thread IDs at 100% CPU (the left-most number in the display), e.g., 729 or 1413, etc. in your most recent htop screenshot. Then open said /var/log/pihole/FTL.log log file and search for the last occurrence of this thread ID. It should not be "Done" but what the thread is currently doing.

@b0se
Copy link
Author

b0se commented Dec 7, 2024

Image

PID 1166

Image

PID 557

Image

But for PID 1416, there is nothing in FTL.log

@DL6ER
Copy link
Member

DL6ER commented Dec 7, 2024

This is not a good sign, it indicates that the API processing is actually done and the thread is "hanging" somewhere else. Please check this related issue for the next step to be done: #2103 (comment)

@b0se
Copy link
Author

b0se commented Dec 7, 2024

how can "interrupt" pihole-FTL ?

@DL6ER
Copy link
Member

DL6ER commented Dec 7, 2024

Ctrl + C

@b0se
Copy link
Author

b0se commented Dec 7, 2024

Image
Image
Image
Image
Image

@DL6ER
Copy link
Member

DL6ER commented Dec 7, 2024

Thank you, this is exactly what we are looking for here. Unfortunately, this is pretty inconclusive. We see it is hanging inside the SSL handshake procedures. Could you check if the issue also happens when you use plain HTTP instead of HTTPS to connect to your web interface?

Otherwise, I'd suggest you look into /var/log/pihole/webserver.log again. How large is this file? So you still have space on your disk? Is your disk maybe particularly slow or is there anything special to it (maybe a network share)? Your screenshots above suggest that FTL was busy printing debug logging - look for strings like => parse client key exchange. Maybe you can recognize some infinite loop somewhere.

@b0se
Copy link
Author

b0se commented Dec 7, 2024

I check the webserver.log later. Space is no problem.

I had never a problem with such high cpu load...since the last FLT update...i have an backup from the lxc container and can go back..but this will not help you and me. :(

@DL6ER
Copy link
Member

DL6ER commented Dec 7, 2024

Well, maybe, it would actually be helpful. If you could look into your backup the exact commit of pihole-FTL where you know for sure it works and where it doesn't. Use pihole-FTL --hash as shortcut for getting the commit.

@b0se
Copy link
Author

b0se commented Dec 7, 2024

We can do some more investigation if you want..i can check log...and the last "straw" is my backup.

@b0se
Copy link
Author

b0se commented Dec 7, 2024

cat /var/log/pihole/webserver.log | grep -i key > no returns
cat /var/log/pihole/webserver.log | grep -i exchange > also no returns

size from webserver.log is 424K

@DL6ER
Copy link
Member

DL6ER commented Dec 7, 2024

Do you have lines like

[2024-09-20 12:31:39.029 CEST 2591498] DEBUG: [ssl_certificate] -> [/etc/pihole/tls.pem] (src/webserver/civetweb/civetweb.c:21169)
[2024-09-20 12:31:39.029 CEST 2591498] DEBUG: Initializing MbedTLS SSL (src/webserver/civetweb/mod_mbedtls.inl:64)
[2024-09-20 12:31:42.403 CEST 2591498] DEBUG: Accepted socket 38 (src/webserver/civetweb/civetweb.c:20375)
[2024-09-20 12:31:42.403 CEST 2591498] DEBUG: queued socket 38 (src/webserver/civetweb/civetweb.c:20077)
[2024-09-20 12:31:42.403 CEST 2591498] DEBUG: Started worker_thread #1 (src/webserver/civetweb/civetweb.c:20984)
[2024-09-20 12:31:42.403 CEST 2591498] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-09-20 12:31:42.403 CEST 2591498] DEBUG: grabbed socket 38, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-09-20 12:31:42.403 CEST 2591498] DEBUG: Incoming SSL connection from 192.168.2.7 (src/webserver/civetweb/civetweb.c:20196)

in your webserver.log? If not, debug.webserver may not be set.

@b0se
Copy link
Author

b0se commented Dec 7, 2024

nope...nothing :(

i set debug.webserver true...we will see

@b0se
Copy link
Author

b0se commented Dec 7, 2024

[2024-12-07 19:54:09.113 UTC 10033] DEBUG: HTTPS Host: 192.168.2.170 (src/webserver/civetweb/civetweb.c:14486)
[2024-12-07 19:54:09.113 UTC 10033] DEBUG: http: 1.1, error: none (src/webserve/civetweb/civetweb.c:19836)
[2024-12-07 19:54:09.113 UTC 10033] DEBUG: REQUEST: GET /api/dns/blocking (src/webserver/civetweb/civetweb.c:15057)
[2024-12-07 19:54:09.114 UTC 10033] DEBUG: websocket handling done (src/webserver/civetweb/civetweb.c:15376)
[2024-12-07 19:54:09.114 UTC 10033] DEBUG: handle_request done (src/webserver/civetweb/civetweb.c:6751)
[2024-12-07 19:54:09.114 UTC 10033] DEBUG: Done processing connection from 192.168.2.110 (1.000000 sec) (src/webserver/civetweb/civetweb.c:19908)
[2024-12-07 19:54:09.114 UTC 10033] DEBUG: TLS connection 0x7f01f656e7e0 closed (src/webserver/civetweb/mod_mbedtls.inl:221)
[2024-12-07 19:54:09.114 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-07 19:54:09.114 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-07 19:54:09.406 UTC 10033] DEBUG: HTTPS Host: 192.168.2.170 (src/webserver/civetweb/civetweb.c:14486)
[2024-12-07 19:54:09.407 UTC 10033] DEBUG: http: 1.1, error: none (src/webserve/civetweb/civetweb.c:19836)
[2024-12-07 19:54:09.407 UTC 10033] DEBUG: REQUEST: GET /api/stats/summary (srcwebserver/civetweb/civetweb.c:15057)
[2024-12-07 19:54:09.407 UTC 10033] DEBUG: websocket handling done (src/webserver/civetweb/civetweb.c:15376)
[2024-12-07 19:54:09.407 UTC 10033] DEBUG: handle_request done (src/webserver/civetweb/civetweb.c:6751)
[2024-12-07 19:54:09.407 UTC 10033] DEBUG: Done processing connection from 192.168.2.110 (2.000000 sec) (src/webserver/civetweb/civetweb.c:19908)
[2024-12-07 19:54:09.407 UTC 10033] DEBUG: TLS connection 0x7f01f65737c0 closed (src/webserver/civetweb/mod_mbedtls.inl:221)
[2024-12-07 19:54:09.407 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-07 19:54:09.407 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-07 19:54:10.949 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-07 19:54:10.949 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-07 19:54:10.949 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-07 19:54:10.949 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-07 19:54:10.949 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e491f8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-07 19:54:11.479 UTC 10033] DEBUG: TLS handshake rc: 0, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-07 19:54:11.479 UTC 10033] DEBUG: TLS connection 0x7f01f8e491f8 accepted, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:208)
[2024-12-07 19:54:11.479 UTC 10033] DEBUG: Start processing connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:19746)
[2024-12-07 19:54:11.479 UTC 10033] DEBUG: calling get_request (1 times for this connection) (src/webserver/civetweb/civetweb.c:19752)
[2024-12-07 19:54:11.481 UTC 10033] DEBUG: HTTPS Host: 192.168.2.170 (src/webserver/civetweb/civetweb.c:14486)
[2024-12-07 19:54:11.481 UTC 10033] DEBUG: http: 1.1, error: none (src/webserve/civetweb/civetweb.c:19836)
[2024-12-07 19:54:11.482 UTC 10033] DEBUG: REQUEST: GET /api/stats/summary (srcwebserver/civetweb/civetweb.c:15057)
[2024-12-07 19:54:11.482 UTC 10033] DEBUG: websocket handling done (src/webserver/civetweb/civetweb.c:15376)
[2024-12-07 19:54:11.482 UTC 10033] DEBUG: handle_request done (src/webserver/civetweb/civetweb.c:6751)
[2024-12-07 19:54:11.482 UTC 10033] DEBUG: Done processing connection from 192.168.2.110 (1.000000 sec) (src/webserver/civetweb/civetweb.c:19908)
[2024-12-07 19:54:11.482 UTC 10033] DEBUG: TLS connection 0x7f01f65737f0 closed (src/webserver/civetweb/mod_mbedtls.inl:221)
[2024-12-07 19:54:11.482 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-07 19:54:11.482 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)

is this a bug? -> DEBUG: http: 1.1, error: none (src/webserve/civetweb/civetweb.c:19836)

there is a "r" missing in werbserver

@rdwebdesign
Copy link
Member

Note:

Your log above shows a few lines with unexpected text:

Missing r in "webserver" in DEBUG_TRACE output:

DEBUG: http: 1.1, error: none (src/webserve/civetweb/civetweb.c:19836)

Missing / between "src" and "webserver" in DEBUG_TRACE output:

REQUEST: GET /api/stats/summary (srcwebserver/civetweb/civetweb.c:15057)

But I have no idea what could cause these issues. Maybe DL6ER knows what is happening.

@DL6ER
Copy link
Member

DL6ER commented Dec 8, 2024

No, I don't know how to explain this. Those are hard-coded strings and I can think only of two reasons here (1) binary corruption (can be checked using pihole-FTL verify) or (2) filesystem corruption (checking depends on the particular filesystem, fsck comes to mind).

Remaining questions from above from my side:

  1. Do you see anything hinting to a endless loop repeating certain lines over and over? (could also be entire blocks of messages)
  2. Do you still observe this when accessing the web interface via HTTP (not HTTPS)?
  3. What are the hashes of the pihole-FTL binary in the container where you know this isn't happening and the affected one?

@b0se
Copy link
Author

b0se commented Dec 8, 2024

from pihole-v6

pihole-FTL verify
[✓] Binary integrity check: OK
cat /var/log/pihole/webserver.log | grep -i exchange > still nothing
cat /var/log/pihole/webserver.log | grep -i key > nothing

cat /var/log/pihole/webserver.log | grep -i error -> 

[2024-12-08 06:17:46.548 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 06:17:47.231 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 06:17:47.471 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 06:17:47.696 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 06:17:47.919 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 06:17:48.471 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 06:17:48.471 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:51:42.910 UTC 10033] DEBUG: http: none, error: No data received (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:51:43.769 UTC 10033] DEBUG: http: none, error: No data received (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:51:44.488 UTC 10033] DEBUG: http: none, error: No data received (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:36.813 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:37.409 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:40.845 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:40.845 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:40.845 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:40.845 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:41.113 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:41.113 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:42.502 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:42.541 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:42.636 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:43.164 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:43.179 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:43.274 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:43.502 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:43.575 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:43.736 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:44.347 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:45.167 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:45.343 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:45.387 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:48.567 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:48.753 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:48.916 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:48.916 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:49.267 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:49.491 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:49.756 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:50.066 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:50.540 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:50.540 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:50.783 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:50.783 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:51.064 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:51.524 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:52.380 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:52.412 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:52.738 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:54.360 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:54.360 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:54.983 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:54.983 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:54.983 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:55.039 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:56.836 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:56.836 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:56.836 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:56.836 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:57.764 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:57.764 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:58.007 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:57:58.007 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:58:00.066 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:58:00.067 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:58:08.037 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:59:43.429 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:59:43.435 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:59:43.435 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:59:53.737 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:59:56.874 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 07:59:57.461 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:00.750 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:00.750 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:00.750 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:00.750 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:01.374 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:01.374 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:01.992 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:01.992 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:01.993 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:01.993 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:02.616 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:02.897 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:03.160 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:03.441 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:05.091 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:05.123 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:05.347 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:07.477 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:07.477 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:07.477 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:07.477 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:08.149 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:08.388 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:08.388 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:08.806 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:18.079 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:18.641 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:22.029 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:28.081 UTC 10033] DEBUG: http: none, error: No data received (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:29.607 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:29.802 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:30.380 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:32.638 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:36.471 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:38.749 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:44.915 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:45.525 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:49.731 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:50.037 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:54.899 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:57.129 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:00:58.056 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:01:02.038 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:01:04.391 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:01:07.325 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:01:07.597 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:01:08.463 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:01:11.902 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:01:12.204 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:01:14.241 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:01:18.544 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:01:18.863 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:01:23.069 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:01:53.397 UTC 10033] DEBUG: http: none, error: No data received (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:39:55.923 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:39:56.962 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:39:57.257 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:39:57.257 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:39:57.258 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:39:57.258 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:40:00.611 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:40:01.133 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:58:30.143 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:58:30.143 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:58:30.319 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:58:30.319 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:58:30.319 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:58:30.319 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:58:31.883 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 08:58:32.435 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:51.253 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:52.169 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:53.150 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:53.350 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:53.350 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:53.350 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:53.350 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:53.355 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:54.086 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:54.298 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:54.298 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:54.517 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:54.758 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:54.939 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:54.995 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:55.220 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:55.454 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:55.455 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:55.856 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:55.926 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:56.157 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:56.383 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:56.600 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:56.612 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:57.252 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:57.307 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:57.310 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:57.310 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:57.826 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:58.336 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:58.337 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:58.543 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:58.551 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:58.752 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:59.244 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:59.480 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:59.480 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:07:59.480 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:00.117 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:00.145 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:00.169 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:00.396 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:01.535 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:01.575 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:01.582 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:01.590 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:01.601 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:01.601 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:02.474 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:02.499 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:02.749 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:02.749 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:02.750 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:02.750 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:03.612 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:03.647 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:03.682 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:03.682 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:03.682 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:03.896 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:04.523 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:04.562 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:04.604 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:04.606 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:05.791 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:05.791 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:11.771 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:12.730 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:13.706 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:08:15.880 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:24:43.168 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:24:44.612 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:24:44.647 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:24:44.651 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:24:44.652 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:24:44.654 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:24:44.655 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:24:45.516 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:24:45.560 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:24:45.568 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:24:45.583 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:24:45.584 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:24:45.788 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:24:46.431 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:24:46.472 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:24:46.532 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:24:48.470 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:44:17.775 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:44:18.270 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:44:18.467 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:44:18.867 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:44:19.181 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:44:19.435 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:44:19.812 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:44:21.841 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:44:22.322 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:44:25.043 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:44:29.283 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 09:44:29.698 UTC 10033] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)

strange, that the 'bug' with the missing 'r' is gone.

cat /var/log/pihole/webserver.log | grep -i civetweb ->

[2024-12-08 09:59:38.107 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4e278 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 09:59:38.112 UTC 10033] DEBUG: TLS handshake rc: -80, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 09:59:38.112 UTC 10033] DEBUG: TLS handshake failed (-80) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 09:59:38.112 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 09:59:38.112 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 09:59:45.117 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 09:59:45.117 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 09:59:45.117 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 09:59:45.118 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 09:59:45.118 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e45fa8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 09:59:45.122 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 09:59:45.122 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 09:59:45.122 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 09:59:45.122 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 09:59:45.128 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 09:59:45.128 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 09:59:45.129 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 09:59:45.129 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 09:59:45.129 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e491f8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 09:59:45.133 UTC 10033] DEBUG: TLS handshake rc: -80, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 09:59:45.133 UTC 10033] DEBUG: TLS handshake failed (-80) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 09:59:45.133 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 09:59:45.133 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:00:29.734 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:00:29.734 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:00:29.734 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:00:29.734 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:00:29.734 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e49c08 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:00:29.740 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:00:29.740 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:00:29.740 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:00:29.740 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:00:29.747 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:00:29.747 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:00:29.747 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:00:29.747 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:00:29.747 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4c448 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:00:29.753 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:00:29.753 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:00:29.753 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:00:29.754 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:00:34.640 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:00:34.640 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:00:34.640 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:00:34.640 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:00:34.640 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4f698 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:00:34.646 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:00:34.646 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:00:34.646 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:00:34.646 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:00:34.657 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:00:34.658 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:00:34.658 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:00:34.658 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:00:34.658 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e469b8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:00:34.664 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:00:34.664 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:00:34.664 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:00:34.664 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:00:35.647 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:00:35.647 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:00:35.647 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:00:35.647 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:00:35.647 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e487e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:00:35.661 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:00:35.661 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:00:35.661 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:00:35.661 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:00:40.655 UTC 10033] DEBUG: Accepted socket 40 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:00:40.655 UTC 10033] DEBUG: queued socket 40 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:00:40.655 UTC 10033] DEBUG: grabbed socket 40, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:00:40.655 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:00:40.655 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e47dd8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:00:40.660 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:00:40.660 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:00:40.660 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:00:40.660 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:00:40.674 UTC 10033] DEBUG: Accepted socket 41 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:00:40.674 UTC 10033] DEBUG: queued socket 41 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:00:40.674 UTC 10033] DEBUG: grabbed socket 41, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:00:40.674 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:00:40.674 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4ce58 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:00:40.680 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:00:40.680 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:00:40.680 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:00:40.680 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:00:54.940 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:00:54.940 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:00:54.940 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:00:54.940 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:00:54.940 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4d868 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:00:54.945 UTC 10033] DEBUG: TLS handshake rc: -80, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:00:54.945 UTC 10033] DEBUG: TLS handshake failed (-80) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:00:54.945 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:00:54.945 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:00:54.956 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:00:54.956 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:00:54.956 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:00:54.957 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:00:54.957 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4ec88 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:00:54.963 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:00:54.963 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:00:54.963 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:00:54.963 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:00:55.952 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:00:55.952 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:00:55.952 UTC 10033] DEBUG: Accepted socket 40 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:00:55.952 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:00:55.952 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:00:55.952 UTC 10033] DEBUG: queued socket 40 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:00:55.952 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4a618 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:00:55.953 UTC 10033] DEBUG: grabbed socket 40, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:00:55.953 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:00:55.953 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4ba38 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:00:55.967 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:00:55.967 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:00:55.967 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:00:55.967 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:00:55.968 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:00:55.968 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:00:55.968 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:00:55.968 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:00:55.985 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:00:55.986 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:00:55.986 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:00:55.986 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:00:55.986 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4b028 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:00:55.993 UTC 10033] DEBUG: TLS handshake rc: -80, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:00:55.993 UTC 10033] DEBUG: TLS handshake failed (-80) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:00:55.993 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:00:55.993 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:00:57.972 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:00:57.972 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:00:57.972 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:00:57.972 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:00:57.972 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e473c8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:00:57.981 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:00:57.981 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:00:57.981 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:00:57.981 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:00:58.985 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:00:58.985 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:00:58.985 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:00:58.985 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:00:58.985 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4e278 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:00:58.989 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:00:58.989 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:00:58.989 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:00:58.989 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:00:59.004 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:00:59.004 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:00:59.004 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:00:59.004 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:00:59.004 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e45fa8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:00:59.005 UTC 10033] DEBUG: Accepted socket 40 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:00:59.005 UTC 10033] DEBUG: queued socket 40 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:00:59.005 UTC 10033] DEBUG: grabbed socket 40, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:00:59.005 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:00:59.005 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e491f8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:00:59.005 UTC 10033] DEBUG: Accepted socket 41 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:00:59.005 UTC 10033] DEBUG: queued socket 41 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:00:59.005 UTC 10033] DEBUG: grabbed socket 41, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:00:59.005 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:00:59.005 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e49c08 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:00:59.015 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:00:59.016 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:00:59.016 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:00:59.016 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:00:59.016 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:00:59.016 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:00:59.016 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:00:59.016 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:00:59.016 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:00:59.016 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:00:59.016 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:00:59.016 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:04:37.569 UTC 10033] DEBUG: Accepted socket 40 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:04:37.569 UTC 10033] DEBUG: queued socket 40 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:04:37.570 UTC 10033] DEBUG: grabbed socket 40, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:04:37.570 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:04:37.570 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4c448 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:04:37.575 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:04:37.575 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:04:37.575 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:04:37.575 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:04:37.582 UTC 10033] DEBUG: Accepted socket 41 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:04:37.582 UTC 10033] DEBUG: queued socket 41 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:04:37.582 UTC 10033] DEBUG: grabbed socket 41, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:04:37.582 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:04:37.582 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4f698 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:04:37.600 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:04:37.600 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:04:37.600 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:04:37.600 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:04:38.569 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:04:38.569 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:04:38.569 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:04:38.569 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:04:38.569 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e469b8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:04:38.575 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:04:38.575 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:04:38.575 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:04:38.575 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:04:45.593 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:04:45.593 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:04:45.593 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:04:45.593 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:04:45.593 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e487e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:04:45.598 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:04:45.598 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:04:45.598 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:04:45.598 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:04:45.604 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:04:45.605 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:04:45.605 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:04:45.605 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:04:45.605 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e47dd8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:04:45.609 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:04:45.609 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:04:45.609 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:04:45.609 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:05:30.011 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:05:30.012 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:05:30.012 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:05:30.012 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:05:30.012 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4ce58 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:05:30.018 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:05:30.018 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:05:30.018 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:05:30.018 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:05:30.028 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:05:30.028 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:05:30.028 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:05:30.028 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:05:30.028 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4d868 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:05:30.035 UTC 10033] DEBUG: TLS handshake rc: -80, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:05:30.035 UTC 10033] DEBUG: TLS handshake failed (-80) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:05:30.035 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:05:30.035 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:05:34.948 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:05:34.948 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:05:34.948 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:05:34.948 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:05:34.948 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4ec88 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:05:34.962 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:05:34.962 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:05:34.962 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:05:34.962 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:05:34.972 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:05:34.972 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:05:34.972 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:05:34.972 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:05:34.972 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4ba38 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:05:34.979 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:05:34.979 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:05:34.979 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:05:34.979 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:05:35.947 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:05:35.947 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:05:35.947 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:05:35.947 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:05:35.947 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4a618 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:05:35.953 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:05:35.953 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:05:35.953 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:05:35.953 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:05:40.956 UTC 10033] DEBUG: Accepted socket 40 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:05:40.956 UTC 10033] DEBUG: queued socket 40 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:05:40.956 UTC 10033] DEBUG: grabbed socket 40, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:05:40.956 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:05:40.956 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4b028 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:05:40.961 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:05:40.961 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:05:40.961 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:05:40.961 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:05:40.974 UTC 10033] DEBUG: Accepted socket 41 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:05:40.974 UTC 10033] DEBUG: queued socket 41 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:05:40.974 UTC 10033] DEBUG: grabbed socket 41, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:05:40.974 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:05:40.974 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e473c8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:05:40.981 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:05:40.981 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:05:40.981 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:05:40.981 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:05:55.780 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:05:55.780 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:05:55.780 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:05:55.780 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:05:55.780 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4e278 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:05:55.786 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:05:55.786 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:05:55.786 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:05:55.786 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:05:55.798 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:05:55.798 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:05:55.798 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:05:55.798 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:05:55.798 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e49c08 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:05:55.803 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:05:55.803 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:05:55.803 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:05:55.803 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:05:56.782 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:05:56.782 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:05:56.782 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:05:56.782 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:05:56.782 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e491f8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:05:56.788 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:05:56.788 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:05:56.788 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:05:56.788 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:06:01.534 UTC 10033] DEBUG: Accepted socket 39 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:06:01.534 UTC 10033] DEBUG: queued socket 39 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:06:01.534 UTC 10033] DEBUG: grabbed socket 39, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:06:01.534 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:06:01.534 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e45fa8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:06:01.792 UTC 10033] DEBUG: Accepted socket 40 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:06:01.792 UTC 10033] DEBUG: queued socket 40 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:06:01.792 UTC 10033] DEBUG: grabbed socket 40, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:06:01.792 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:06:01.792 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4c448 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:06:01.800 UTC 10033] DEBUG: TLS handshake rc: -80, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:06:01.800 UTC 10033] DEBUG: TLS handshake failed (-80) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:06:01.800 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:06:01.800 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:06:01.809 UTC 10033] DEBUG: Accepted socket 40 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:06:01.809 UTC 10033] DEBUG: queued socket 40 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:06:01.809 UTC 10033] DEBUG: grabbed socket 40, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:06:01.809 UTC 10033] DEBUG: Incoming SSL connection from 192.168.2.110 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:06:01.809 UTC 10033] DEBUG: TLS accept processing 0x7f01f8e4f698 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:06:01.815 UTC 10033] DEBUG: TLS handshake rc: -80, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:06:01.815 UTC 10033] DEBUG: TLS handshake failed (-80) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:06:01.815 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:06:01.815 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:06:03.075 UTC 10033] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:06:03.076 UTC 10033] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:06:03.076 UTC 10033] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:06:03.076 UTC 10033] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)

soo...

i create a new container with the 'working' backup. Now, i have two pihole-v6 instances... pihole-v6 and pihole-v6-2. I enabled debug.api and debug.webserver @ pihole-v6-2. At the moment, i will set up 3 devices to use the pihole-v6-2 instance as dns to generate load / traffic.

pihole-FTL verify
[✓] Binary integrity check: OK
pihole -v
Core
    Version is v5.18.3-537-g112b9617 (Latest: null)
    Branch is development
    Hash is 112b9617 (Latest: 76a6b420)
Web
    Version is v5.21-1012-gc689fdc7 (Latest: null)
    Branch is development
    Hash is c689fdc7 (Latest: e57c0fb8)
FTL
    Version is vDev-8b7a843 (Latest: null)
    Branch is development
    Hash is 8b7a8432 (Latest: 18f91b0f)

this is from pihole-v6-2

@b0se
Copy link
Author

b0se commented Dec 8, 2024

okay..thats strange...

pihole-v6-2 .. the 'working'-one

Image
Image
Image
Image
Image

[2024-12-08 10:46:28.464 UTC 387] DEBUG: TLS handshake rc: 0, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:28.464 UTC 387] DEBUG: TLS connection 0x7fd9c810a8e8 accepted, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:208)
[2024-12-08 10:46:28.464 UTC 387] DEBUG: Start processing connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:19746)
[2024-12-08 10:46:28.464 UTC 387] DEBUG: calling get_request (1 times for this connection) (src/webserver/civetweb/civetweb.c:19752)
[2024-12-08 10:46:28.465 UTC 387] DEBUG: HTTPS Host: 192.168.2.171 (src/webserver/civetweb/civetweb.c:14486)
[2024-12-08 10:46:28.465 UTC 387] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 10:46:28.465 UTC 387] DEBUG: REQUEST: GET /admin/img/pihole_icon.svg (src/webserver/civetweb/civetweb.c:15057)
[2024-12-08 10:46:28.465 UTC 387] DEBUG: handling GET request to /var/www/html/admin/img/pihole_icon.svg done (static) (src/webservercivetweb/civetweb.c:15626)
[2024-12-08 10:46:28.465 UTC 387] DEBUG: handle_request done (src/webserver/civetweb/civetweb.c:6751)
[2024-12-08 10:46:28.465 UTC 387] DEBUG: Done processing connection from 192.168.2.243 (1.000000 sec) (src/webserver/civetweb/civetwe.c:19908)
[2024-12-08 10:46:28.465 UTC 387] DEBUG: TLS connection 0x7fd9c6bfd490 closed (src/webserver/civetweb/mod_mbedtls.inl:221)
[2024-12-08 10:46:28.465 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:28.465 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:28.465 UTC 387] DEBUG: grabbed socket 62, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:28.465 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:28.465 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:29.047 UTC 387] DEBUG: TLS handshake rc: 0, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:29.047 UTC 387] DEBUG: TLS connection 0x7fd9c810a8e8 accepted, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:208)
[2024-12-08 10:46:29.047 UTC 387] DEBUG: Start processing connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:19746)
[2024-12-08 10:46:29.047 UTC 387] DEBUG: calling get_request (1 times for this connection) (src/webserver/civetweb/civetweb.c:19752)
[2024-12-08 10:46:29.047 UTC 387] DEBUG: HTTPS Host: 192.168.2.171 (src/webserver/civetweb/civetweb.c:14486)
[2024-12-08 10:46:29.047 UTC 387] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 10:46:29.047 UTC 387] DEBUG: REQUEST: GET /admin/scripts/js/network.js (src/webserver/civetweb/civetweb.c:15057)
[2024-12-08 10:46:29.048 UTC 387] DEBUG: handling GET request to /var/www/html/admin/scripts/js/network.js done (static) (src/webserver/civetweb/civetweb.c:15626)
[2024-12-08 10:46:29.048 UTC 387] DEBUG: handle_request done (src/webserver/civetweb/civetweb.c:6751)
[2024-12-08 10:46:29.048 UTC 387] DEBUG: Done processing connection from 192.168.2.243 (1.000000 sec) (src/webserver/civetweb/civetwe.c:19908)
[2024-12-08 10:46:29.048 UTC 387] DEBUG: TLS connection 0x7fd9c6dffd90 closed (src/webserver/civetweb/mod_mbedtls.inl:221)
[2024-12-08 10:46:29.048 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:29.048 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:29.048 UTC 387] DEBUG: grabbed socket 60, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:29.048 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:29.048 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:29.576 UTC 387] DEBUG: Accepted socket 44 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:29.576 UTC 387] DEBUG: queued socket 44 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:30.014 UTC 387] DEBUG: Accepted socket 59 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:30.014 UTC 387] DEBUG: queued socket 59 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:30.401 UTC 387] DEBUG: TLS handshake rc: 0, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:30.401 UTC 387] DEBUG: TLS connection 0x7fd9c810a8e8 accepted, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:208)
[2024-12-08 10:46:30.401 UTC 387] DEBUG: Start processing connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:19746)
[2024-12-08 10:46:30.401 UTC 387] DEBUG: calling get_request (1 times for this connection) (src/webserver/civetweb/civetweb.c:19752)
[2024-12-08 10:46:30.401 UTC 387] DEBUG: HTTPS Host: 192.168.2.171 (src/webserver/civetweb/civetweb.c:14486)
[2024-12-08 10:46:30.401 UTC 387] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 10:46:30.401 UTC 387] DEBUG: REQUEST: GET /admin/scripts/js/footer.js (src/webserver/civetweb/civetweb.c:15057)
[2024-12-08 10:46:30.401 UTC 387] DEBUG: handling GET request to /var/www/html/admin/scripts/js/footer.js done (static) (src/webserver/civetweb/civetweb.c:15626)
[2024-12-08 10:46:30.401 UTC 387] DEBUG: handle_request done (src/webserver/civetweb/civetweb.c:6751)
[2024-12-08 10:46:30.401 UTC 387] DEBUG: Done processing connection from 192.168.2.243 (1.000000 sec) (src/webserver/civetweb/civetwe.c:19908)
[2024-12-08 10:46:30.402 UTC 387] DEBUG: TLS connection 0x7fd9c6bfdb50 closed (src/webserver/civetweb/mod_mbedtls.inl:221)
[2024-12-08 10:46:30.402 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:30.402 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:30.402 UTC 387] DEBUG: grabbed socket 44, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:30.402 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:30.402 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:31.136 UTC 387] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:31.136 UTC 387] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:46:31.136 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:31.136 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:31.136 UTC 387] DEBUG: grabbed socket 59, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:31.136 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:31.136 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:31.456 UTC 387] DEBUG: Accepted socket 44 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:31.456 UTC 387] DEBUG: queued socket 44 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:31.459 UTC 387] DEBUG: Accepted socket 60 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:31.459 UTC 387] DEBUG: queued socket 60 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:31.460 UTC 387] DEBUG: Accepted socket 61 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:31.460 UTC 387] DEBUG: queued socket 61 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:31.705 UTC 387] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:31.705 UTC 387] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:46:31.705 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:31.705 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:31.705 UTC 387] DEBUG: grabbed socket 44, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:31.705 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:31.705 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:31.971 UTC 387] DEBUG: Accepted socket 59 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:31.971 UTC 387] DEBUG: queued socket 59 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:32.250 UTC 387] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:32.250 UTC 387] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:46:32.250 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:32.250 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:32.250 UTC 387] DEBUG: grabbed socket 60, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:32.250 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:32.250 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:32.425 UTC 387] DEBUG: Accepted socket 44 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:32.426 UTC 387] DEBUG: queued socket 44 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:32.601 UTC 387] DEBUG: Accepted socket 62 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:32.601 UTC 387] DEBUG: queued socket 62 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:32.608 UTC 387] DEBUG: Accepted socket 63 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:32.608 UTC 387] DEBUG: queued socket 63 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:34.234 UTC 387] DEBUG: Accepted socket 64 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:34.234 UTC 387] DEBUG: queued socket 64 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:34.618 UTC 387] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:34.618 UTC 387] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:46:34.618 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:34.618 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:34.618 UTC 387] DEBUG: grabbed socket 61, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:34.618 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:34.618 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:35.477 UTC 387] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:35.477 UTC 387] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:46:35.477 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:35.477 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:35.477 UTC 387] DEBUG: grabbed socket 59, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:35.477 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:35.477 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:35.933 UTC 387] DEBUG: Accepted socket 60 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:35.933 UTC 387] DEBUG: queued socket 60 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:36.349 UTC 387] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:36.350 UTC 387] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:46:36.350 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:36.350 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:36.350 UTC 387] DEBUG: grabbed socket 44, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:36.350 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:36.350 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:36.878 UTC 387] DEBUG: Accepted socket 59 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:36.879 UTC 387] DEBUG: queued socket 59 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:37.443 UTC 387] DEBUG: TLS handshake rc: 0, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:37.443 UTC 387] DEBUG: TLS connection 0x7fd9c810a8e8 accepted, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:208)
[2024-12-08 10:46:37.443 UTC 387] DEBUG: Start processing connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:19746)
[2024-12-08 10:46:37.443 UTC 387] DEBUG: calling get_request (1 times for this connection) (src/webserver/civetweb/civetweb.c:19752)
[2024-12-08 10:46:37.443 UTC 387] DEBUG: HTTPS Host: 192.168.2.171 (src/webserver/civetweb/civetweb.c:14486)
[2024-12-08 10:46:37.443 UTC 387] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 10:46:37.443 UTC 387] DEBUG: REQUEST: GET /api/network/devices (src/webserver/civetweb/civetweb.c:15057)
[2024-12-08 10:46:37.445 UTC 387] DEBUG: websocket handling done (src/webserver/civetweb/civetweb.c:15376)
[2024-12-08 10:46:37.445 UTC 387] DEBUG: handle_request done (src/webserver/civetweb/civetweb.c:6751)
[2024-12-08 10:46:37.445 UTC 387] DEBUG: Done processing connection from 192.168.2.243 (1.000000 sec) (src/webserver/civetweb/civetwe.c:19908)
[2024-12-08 10:46:37.445 UTC 387] DEBUG: TLS connection 0x7fd9c6bfdd90 closed (src/webserver/civetweb/mod_mbedtls.inl:221)
[2024-12-08 10:46:37.445 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:37.445 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:37.445 UTC 387] DEBUG: grabbed socket 62, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:37.445 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:37.445 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:38.008 UTC 387] DEBUG: Accepted socket 44 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:38.008 UTC 387] DEBUG: queued socket 44 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:38.432 UTC 387] DEBUG: Accepted socket 61 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:38.432 UTC 387] DEBUG: queued socket 61 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:38.432 UTC 387] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:38.432 UTC 387] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:46:38.432 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:38.432 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:38.432 UTC 387] DEBUG: grabbed socket 63, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:38.432 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:38.432 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:39.583 UTC 387] DEBUG: Accepted socket 62 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:39.583 UTC 387] DEBUG: queued socket 62 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:39.646 UTC 387] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:39.646 UTC 387] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:46:39.646 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:39.646 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:39.646 UTC 387] DEBUG: grabbed socket 64, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:39.647 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:39.647 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:40.133 UTC 387] DEBUG: Accepted socket 63 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:40.133 UTC 387] DEBUG: queued socket 63 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:40.400 UTC 387] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:40.400 UTC 387] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:46:40.400 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:40.400 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:40.400 UTC 387] DEBUG: grabbed socket 60, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:40.400 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:40.400 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:40.720 UTC 387] DEBUG: Accepted socket 64 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:40.720 UTC 387] DEBUG: queued socket 64 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:40.999 UTC 387] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:40.999 UTC 387] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:46:40.999 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:40.999 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:40.999 UTC 387] DEBUG: grabbed socket 59, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:40.999 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:40.999 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:41.791 UTC 387] DEBUG: TLS handshake rc: 0, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:41.791 UTC 387] DEBUG: TLS connection 0x7fd9c810a8e8 accepted, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:208)
[2024-12-08 10:46:41.791 UTC 387] DEBUG: Start processing connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:19746)
[2024-12-08 10:46:41.791 UTC 387] DEBUG: calling get_request (1 times for this connection) (src/webserver/civetweb/civetweb.c:19752)
[2024-12-08 10:46:41.820 UTC 387] DEBUG: HTTPS Host: 192.168.2.171 (src/webserver/civetweb/civetweb.c:14486)
[2024-12-08 10:46:41.820 UTC 387] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 10:46:41.820 UTC 387] DEBUG: REQUEST: GET /api/info/system (src/webserver/civetweb/civetweb.c:15057)
[2024-12-08 10:46:41.822 UTC 387] DEBUG: websocket handling done (src/webserver/civetweb/civetweb.c:15376)
[2024-12-08 10:46:41.822 UTC 387] DEBUG: handle_request done (src/webserver/civetweb/civetweb.c:6751)
[2024-12-08 10:46:41.822 UTC 387] DEBUG: Done processing connection from 192.168.2.243 (1.000000 sec) (src/webserver/civetweb/civetwe.c:19908)
[2024-12-08 10:46:41.822 UTC 387] DEBUG: TLS connection 0x7fd9c6dffd90 closed (src/webserver/civetweb/mod_mbedtls.inl:221)
[2024-12-08 10:46:41.822 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:41.822 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:41.822 UTC 387] DEBUG: grabbed socket 44, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:41.822 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:41.822 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:42.318 UTC 387] DEBUG: Accepted socket 59 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:42.318 UTC 387] DEBUG: queued socket 59 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:42.357 UTC 387] DEBUG: TLS handshake rc: 0, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:42.357 UTC 387] DEBUG: TLS connection 0x7fd9c810a8e8 accepted, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:208)
[2024-12-08 10:46:42.357 UTC 387] DEBUG: Start processing connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:19746)
[2024-12-08 10:46:42.357 UTC 387] DEBUG: calling get_request (1 times for this connection) (src/webserver/civetweb/civetweb.c:19752)
[2024-12-08 10:46:42.365 UTC 387] DEBUG: HTTPS Host: 192.168.2.171 (src/webserver/civetweb/civetweb.c:14486)
[2024-12-08 10:46:42.365 UTC 387] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 10:46:42.365 UTC 387] DEBUG: REQUEST: GET /api/info/version (src/webserver/civetweb/civetweb.c:15057)
[2024-12-08 10:46:42.365 UTC 387] DEBUG: websocket handling done (src/webserver/civetweb/civetweb.c:15376)
[2024-12-08 10:46:42.365 UTC 387] DEBUG: handle_request done (src/webserver/civetweb/civetweb.c:6751)
[2024-12-08 10:46:42.366 UTC 387] DEBUG: Done processing connection from 192.168.2.243 (1.000000 sec) (src/webserver/civetweb/civetwe.c:19908)
[2024-12-08 10:46:42.366 UTC 387] DEBUG: TLS connection 0x7fd9c6bfd490 closed (src/webserver/civetweb/mod_mbedtls.inl:221)
[2024-12-08 10:46:42.366 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:42.366 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:42.366 UTC 387] DEBUG: grabbed socket 61, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:42.366 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:42.366 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:42.376 UTC 387] DEBUG: Accepted socket 44 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:42.376 UTC 387] DEBUG: queued socket 44 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:43.024 UTC 387] DEBUG: TLS handshake rc: 0, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:43.024 UTC 387] DEBUG: TLS connection 0x7fd9c810a8e8 accepted, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:208)
[2024-12-08 10:46:43.024 UTC 387] DEBUG: Start processing connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:19746)
[2024-12-08 10:46:43.024 UTC 387] DEBUG: calling get_request (1 times for this connection) (src/webserver/civetweb/civetweb.c:19752)
[2024-12-08 10:46:43.024 UTC 387] DEBUG: HTTPS Host: 192.168.2.171 (src/webserver/civetweb/civetweb.c:14486)
[2024-12-08 10:46:43.024 UTC 387] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 10:46:43.024 UTC 387] DEBUG: REQUEST: GET /api/info/ftl (src/webserver/civetweb/civetweb.c:15057)
[2024-12-08 10:46:43.026 UTC 387] DEBUG: websocket handling done (src/webserver/civetweb/civetweb.c:15376)
[2024-12-08 10:46:43.026 UTC 387] DEBUG: handle_request done (src/webserver/civetweb/civetweb.c:6751)
[2024-12-08 10:46:43.026 UTC 387] DEBUG: Done processing connection from 192.168.2.243 (1.000000 sec) (src/webserver/civetweb/civetwe.c:19908)
[2024-12-08 10:46:43.026 UTC 387] DEBUG: TLS connection 0x7fd9c6bfd490 closed (src/webserver/civetweb/mod_mbedtls.inl:221)
[2024-12-08 10:46:43.026 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:43.026 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:43.026 UTC 387] DEBUG: grabbed socket 62, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:43.026 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:43.026 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:43.660 UTC 387] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:43.660 UTC 387] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:46:43.660 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:43.660 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:43.660 UTC 387] DEBUG: grabbed socket 63, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:43.660 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:43.660 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:44.566 UTC 387] DEBUG: Accepted socket 60 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:44.566 UTC 387] DEBUG: queued socket 60 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:45.162 UTC 387] DEBUG: TLS handshake rc: 0, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:45.162 UTC 387] DEBUG: TLS connection 0x7fd9c810a8e8 accepted, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:208)
[2024-12-08 10:46:45.162 UTC 387] DEBUG: Start processing connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:19746)
[2024-12-08 10:46:45.162 UTC 387] DEBUG: calling get_request (1 times for this connection) (src/webserver/civetweb/civetweb.c:19752)
[2024-12-08 10:46:45.163 UTC 387] DEBUG: HTTPS Host: 192.168.2.171 (src/webserver/civetweb/civetweb.c:14486)
[2024-12-08 10:46:45.163 UTC 387] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 10:46:45.163 UTC 387] DEBUG: REQUEST: GET /api/info/messages/count (src/webserver/civetweb/civetweb.c:15057)
[2024-12-08 10:46:45.164 UTC 387] DEBUG: websocket handling done (src/webserver/civetweb/civetweb.c:15376)
[2024-12-08 10:46:45.164 UTC 387] DEBUG: handle_request done (src/webserver/civetweb/civetweb.c:6751)
[2024-12-08 10:46:45.164 UTC 387] DEBUG: Done processing connection from 192.168.2.243 (2.000000 sec) (src/webserver/civetweb/civetwe.c:19908)
[2024-12-08 10:46:45.164 UTC 387] DEBUG: TLS connection 0x7fd9c6bfdd90 closed (src/webserver/civetweb/mod_mbedtls.inl:221)
[2024-12-08 10:46:45.164 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:45.164 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:45.164 UTC 387] DEBUG: grabbed socket 64, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:45.164 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:45.164 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:46.078 UTC 387] DEBUG: TLS handshake rc: 0, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:46.078 UTC 387] DEBUG: TLS connection 0x7fd9c810a8e8 accepted, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:208)
[2024-12-08 10:46:46.078 UTC 387] DEBUG: Start processing connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:19746)
[2024-12-08 10:46:46.078 UTC 387] DEBUG: calling get_request (1 times for this connection) (src/webserver/civetweb/civetweb.c:19752)
[2024-12-08 10:46:46.078 UTC 387] DEBUG: HTTPS Host: 192.168.2.171 (src/webserver/civetweb/civetweb.c:14486)
[2024-12-08 10:46:46.078 UTC 387] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 10:46:46.078 UTC 387] DEBUG: REQUEST: GET /admin/img/logo.svg (src/webserver/civetweb/civetweb.c:15057)
[2024-12-08 10:46:46.079 UTC 387] DEBUG: handling GET request to /var/www/html/admin/img/logo.svg done (static) (src/webserver/civetweb/civetweb.c:15626)
[2024-12-08 10:46:46.079 UTC 387] DEBUG: handle_request done (src/webserver/civetweb/civetweb.c:6751)
[2024-12-08 10:46:46.079 UTC 387] DEBUG: Done processing connection from 192.168.2.243 (1.000000 sec) (src/webserver/civetweb/civetwe.c:19908)
[2024-12-08 10:46:46.079 UTC 387] DEBUG: TLS connection 0x7fd9c6bfd490 closed (src/webserver/civetweb/mod_mbedtls.inl:221)
[2024-12-08 10:46:46.079 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:46.079 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:46.079 UTC 387] DEBUG: grabbed socket 59, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:46.079 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:46.079 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:46.657 UTC 387] DEBUG: Accepted socket 61 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:46.657 UTC 387] DEBUG: queued socket 61 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:47.104 UTC 387] DEBUG: TLS handshake rc: 0, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:47.104 UTC 387] DEBUG: TLS connection 0x7fd9c810a8e8 accepted, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:208)
[2024-12-08 10:46:47.104 UTC 387] DEBUG: Start processing connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:19746)
[2024-12-08 10:46:47.104 UTC 387] DEBUG: calling get_request (1 times for this connection) (src/webserver/civetweb/civetweb.c:19752)
[2024-12-08 10:46:47.106 UTC 387] DEBUG: HTTPS Host: 192.168.2.171 (src/webserver/civetweb/civetweb.c:14486)
[2024-12-08 10:46:47.106 UTC 387] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 10:46:47.106 UTC 387] DEBUG: REQUEST: GET /admin/vendor/icheck/icheck-bootstrap.min.css (src/webserver/civetweb/civetweb.c:15057)
[2024-12-08 10:46:47.106 UTC 387] DEBUG: handling GET request to /var/www/html/admin/vendor/icheck/icheck-bootstrap.min.css done (static) (src/webserver/civetweb/civetweb.c:15626)
[2024-12-08 10:46:47.107 UTC 387] DEBUG: handle_request done (src/webserver/civetweb/civetweb.c:6751)
[2024-12-08 10:46:47.107 UTC 387] DEBUG: Done processing connection from 192.168.2.243 (1.000000 sec) (src/webserver/civetweb/civetwe.c:19908)
[2024-12-08 10:46:47.107 UTC 387] DEBUG: TLS connection 0x7fd9c6dffd90 closed (src/webserver/civetweb/mod_mbedtls.inl:221)
[2024-12-08 10:46:47.107 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:47.107 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:47.107 UTC 387] DEBUG: grabbed socket 44, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:47.107 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:47.107 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:51.114 UTC 387] DEBUG: TLS handshake rc: 0, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:51.114 UTC 387] DEBUG: TLS connection 0x7fd9c810a8e8 accepted, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:208)
[2024-12-08 10:46:51.114 UTC 387] DEBUG: Start processing connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:19746)
[2024-12-08 10:46:51.114 UTC 387] DEBUG: calling get_request (1 times for this connection) (src/webserver/civetweb/civetweb.c:19752)
[2024-12-08 10:46:51.114 UTC 387] DEBUG: HTTPS Host: 192.168.2.171 (src/webserver/civetweb/civetweb.c:14486)
[2024-12-08 10:46:51.114 UTC 387] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 10:46:51.114 UTC 387] DEBUG: REQUEST: GET /admin/img/boxed-bg-dark.png (src/webserver/civetweb/civetweb.c:15057)
[2024-12-08 10:46:51.120 UTC 387] DEBUG: handling GET request to /var/www/html/admin/img/boxed-bg-dark.png done (static) (src/webserver/civetweb/civetweb.c:15626)
[2024-12-08 10:46:51.120 UTC 387] DEBUG: handle_request done (src/webserver/civetweb/civetweb.c:6751)
[2024-12-08 10:46:51.120 UTC 387] DEBUG: Done processing connection from 192.168.2.243 (4.000000 sec) (src/webserver/civetweb/civetwe.c:19908)
[2024-12-08 10:46:51.120 UTC 387] DEBUG: TLS connection 0x7fd9c6dffb50 closed (src/webserver/civetweb/mod_mbedtls.inl:221)
[2024-12-08 10:46:51.120 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:51.120 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:51.120 UTC 387] DEBUG: grabbed socket 60, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:51.120 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:51.120 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:53.205 UTC 387] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:53.205 UTC 387] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:46:53.205 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:53.205 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:53.205 UTC 387] DEBUG: grabbed socket 61, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:53.205 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:53.205 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:53.465 UTC 387] DEBUG: Accepted socket 44 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:53.465 UTC 387] DEBUG: queued socket 44 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:53.736 UTC 387] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:46:53.736 UTC 387] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:46:53.736 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:46:53.736 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:46:53.736 UTC 387] DEBUG: grabbed socket 44, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:46:53.737 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:46:53.737 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:46:54.027 UTC 387] DEBUG: Accepted socket 59 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:54.027 UTC 387] DEBUG: queued socket 59 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:54.531 UTC 387] DEBUG: Accepted socket 60 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:54.531 UTC 387] DEBUG: queued socket 60 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:46:54.538 UTC 387] DEBUG: Accepted socket 61 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:46:54.538 UTC 387] DEBUG: queued socket 61 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:47:01.421 UTC 387] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:47:01.421 UTC 387] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:47:01.421 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:47:01.421 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:47:01.421 UTC 387] DEBUG: grabbed socket 59, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:47:01.421 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:47:01.421 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:47:01.690 UTC 387] DEBUG: Accepted socket 44 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:47:01.690 UTC 387] DEBUG: queued socket 44 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:47:01.973 UTC 387] DEBUG: TLS handshake rc: 0, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:47:01.973 UTC 387] DEBUG: TLS connection 0x7fd9c810a8e8 accepted, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:208)
[2024-12-08 10:47:01.973 UTC 387] DEBUG: Start processing connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:19746)
[2024-12-08 10:47:01.973 UTC 387] DEBUG: calling get_request (1 times for this connection) (src/webserver/civetweb/civetweb.c:19752)
[2024-12-08 10:47:01.977 UTC 387] DEBUG: HTTPS Host: 192.168.2.171 (src/webserver/civetweb/civetweb.c:14486)
[2024-12-08 10:47:01.977 UTC 387] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 10:47:01.977 UTC 387] DEBUG: REQUEST: GET /admin/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2 (src/webservercivetweb/civetweb.c:15057)
[2024-12-08 10:47:01.978 UTC 387] DEBUG: handling GET request to /var/www/html/admin/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2 done (static) (src/webserver/civetweb/civetweb.c:15626)
[2024-12-08 10:47:01.978 UTC 387] DEBUG: handle_request done (src/webserver/civetweb/civetweb.c:6751)
[2024-12-08 10:47:01.978 UTC 387] DEBUG: Done processing connection from 192.168.2.243 (0.000000 sec) (src/webserver/civetweb/civetwe.c:19908)
[2024-12-08 10:47:01.978 UTC 387] DEBUG: TLS connection 0x7fd9c6dffb50 closed (src/webserver/civetweb/mod_mbedtls.inl:221)
[2024-12-08 10:47:01.978 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:47:01.978 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:47:01.978 UTC 387] DEBUG: grabbed socket 60, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:47:01.978 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:47:01.978 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:47:04.230 UTC 387] DEBUG: TLS handshake rc: 0, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:47:04.230 UTC 387] DEBUG: TLS connection 0x7fd9c810a8e8 accepted, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:208)
[2024-12-08 10:47:04.230 UTC 387] DEBUG: Start processing connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:19746)
[2024-12-08 10:47:04.230 UTC 387] DEBUG: calling get_request (1 times for this connection) (src/webserver/civetweb/civetweb.c:19752)
[2024-12-08 10:47:04.419 UTC 387] DEBUG: HTTPS Host: 192.168.2.171 (src/webserver/civetweb/civetweb.c:14486)
[2024-12-08 10:47:04.419 UTC 387] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 10:47:04.419 UTC 387] DEBUG: REQUEST: GET /admin/img/favicons/favicon-32x32.png (src/webserver/civetweb/civetweb.c:15057)
[2024-12-08 10:47:04.420 UTC 387] DEBUG: handling GET request to /var/www/html/admin/img/favicons/favicon-32x32.png done (static) (src/webserver/civetweb/civetweb.c:15626)
[2024-12-08 10:47:04.420 UTC 387] DEBUG: handle_request done (src/webserver/civetweb/civetweb.c:6751)
[2024-12-08 10:47:04.420 UTC 387] DEBUG: Done processing connection from 192.168.2.243 (3.000000 sec) (src/webserver/civetweb/civetwe.c:19908)
[2024-12-08 10:47:04.420 UTC 387] DEBUG: TLS connection 0x7fd9c6bfd490 closed (src/webserver/civetweb/mod_mbedtls.inl:221)
[2024-12-08 10:47:04.420 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:47:04.420 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:47:04.420 UTC 387] DEBUG: grabbed socket 61, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:47:04.420 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:47:04.420 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:47:04.688 UTC 387] DEBUG: Accepted socket 59 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:47:04.689 UTC 387] DEBUG: queued socket 59 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:47:05.129 UTC 387] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:47:05.129 UTC 387] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:47:05.129 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:47:05.129 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:47:05.129 UTC 387] DEBUG: grabbed socket 44, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:47:05.129 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:47:05.129 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:47:05.851 UTC 387] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:47:05.851 UTC 387] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:47:05.851 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:47:05.851 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:47:05.851 UTC 387] DEBUG: grabbed socket 59, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:47:05.851 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:47:05.852 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:47:07.375 UTC 387] DEBUG: TLS handshake rc: -30592, state: 11 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:47:07.375 UTC 387] DEBUG: TLS handshake failed (-30592) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:47:07.376 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:47:07.376 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:47:07.913 UTC 387] DEBUG: Accepted socket 44 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:47:07.913 UTC 387] DEBUG: queued socket 44 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:47:07.915 UTC 387] DEBUG: grabbed socket 44, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:47:07.915 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:47:07.915 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:47:08.347 UTC 387] DEBUG: Accepted socket 59 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:47:08.347 UTC 387] DEBUG: queued socket 59 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:47:09.261 UTC 387] DEBUG: TLS handshake rc: 0, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:47:09.261 UTC 387] DEBUG: TLS connection 0x7fd9c810a8e8 accepted, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:208)
[2024-12-08 10:47:09.261 UTC 387] DEBUG: Start processing connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:19746)
[2024-12-08 10:47:09.261 UTC 387] DEBUG: calling get_request (1 times for this connection) (src/webserver/civetweb/civetweb.c:19752)
[2024-12-08 10:47:27.436 UTC 387] DEBUG: HTTPS Host: 192.168.2.171 (src/webserver/civetweb/civetweb.c:14486)
[2024-12-08 10:47:27.436 UTC 387] DEBUG: http: 1.1, error: none (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 10:47:27.436 UTC 387] DEBUG: REQUEST: GET /admin/img/favicons/apple-touch-icon.png (src/webserver/civetweb/civetweb.c:15057)
[2024-12-08 10:47:27.437 UTC 387] DEBUG: handling GET request to /var/www/html/admin/img/favicons/apple-touch-icon.png done (static) (src/webserver/civetweb/civetweb.c:15626)
[2024-12-08 10:47:27.437 UTC 387] DEBUG: handle_request done (src/webserver/civetweb/civetweb.c:6751)
[2024-12-08 10:47:27.437 UTC 387] DEBUG: Done processing connection from 192.168.2.243 (20.000000 sec) (src/webserver/civetweb/civetweb.c:19908)
[2024-12-08 10:47:27.437 UTC 387] DEBUG: TLS connection 0x7fd9c6dffd90 closed (src/webserver/civetweb/mod_mbedtls.inl:221)
[2024-12-08 10:47:27.437 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:47:27.437 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:47:27.437 UTC 387] DEBUG: grabbed socket 59, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:47:27.437 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:47:27.437 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:47:31.247 UTC 387] DEBUG: TLS handshake rc: 0, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:47:31.247 UTC 387] DEBUG: TLS connection 0x7fd9c810a8e8 accepted, state: 27 (src/webserver/civetweb/mod_mbedtls.inl:208)
[2024-12-08 10:47:31.247 UTC 387] DEBUG: Start processing connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:19746)
[2024-12-08 10:47:31.247 UTC 387] DEBUG: calling get_request (1 times for this connection) (src/webserver/civetweb/civetweb.c:19752)
[2024-12-08 10:48:01.273 UTC 387] DEBUG: http: none, error: No data received (src/webserver/civetweb/civetweb.c:19836)
[2024-12-08 10:48:01.273 UTC 387] DEBUG: Done processing connection from 192.168.2.243 (34.000000 sec) (src/webserver/civetweb/civetweb.c:19908)
[2024-12-08 10:48:01.273 UTC 387] DEBUG: TLS connection 0x7fd9c6bfdd90 closed (src/webserver/civetweb/mod_mbedtls.inl:221)
[2024-12-08 10:48:01.273 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:48:01.273 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:51:32.120 UTC 387] DEBUG: Accepted socket 44 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:51:32.120 UTC 387] DEBUG: queued socket 44 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:51:32.120 UTC 387] DEBUG: grabbed socket 44, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:51:32.120 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:51:32.120 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:51:34.191 UTC 387] DEBUG: TLS handshake rc: -80, state: 8 (src/webserver/civetweb/mod_mbedtls.inl:240)
[2024-12-08 10:51:34.191 UTC 387] DEBUG: TLS handshake failed (-80) (src/webserver/civetweb/mod_mbedtls.inl:200)
[2024-12-08 10:51:34.191 UTC 387] DEBUG: Connection closed (src/webserver/civetweb/civetweb.c:20287)
[2024-12-08 10:51:34.191 UTC 387] DEBUG: going idle (src/webserver/civetweb/civetweb.c:20011)
[2024-12-08 10:53:34.527 UTC 387] DEBUG: Accepted socket 44 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:53:34.528 UTC 387] DEBUG: queued socket 44 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:53:34.528 UTC 387] DEBUG: grabbed socket 44, going busy (src/webserver/civetweb/civetweb.c:20031)
[2024-12-08 10:53:34.528 UTC 387] DEBUG: Incoming SSL connection from 192.168.2.243 (src/webserver/civetweb/civetweb.c:20196)
[2024-12-08 10:53:34.528 UTC 387] DEBUG: TLS accept processing 0x7fd9c810a8e8 (src/webserver/civetweb/mod_mbedtls.inl:184)
[2024-12-08 10:56:04.366 UTC 387] DEBUG: Accepted socket 59 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:56:04.366 UTC 387] DEBUG: queued socket 59 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:59:42.368 UTC 387] DEBUG: Accepted socket 60 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:59:42.368 UTC 387] DEBUG: queued socket 60 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:59:42.879 UTC 387] DEBUG: Accepted socket 61 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:59:42.879 UTC 387] DEBUG: queued socket 61 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:59:43.516 UTC 387] DEBUG: Accepted socket 62 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:59:43.516 UTC 387] DEBUG: queued socket 62 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:59:47.064 UTC 387] DEBUG: Accepted socket 63 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:59:47.064 UTC 387] DEBUG: queued socket 63 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 10:59:47.334 UTC 387] DEBUG: Accepted socket 64 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 10:59:47.334 UTC 387] DEBUG: queued socket 64 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 11:00:08.017 UTC 387] DEBUG: Accepted socket 65 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 11:00:08.018 UTC 387] DEBUG: queued socket 65 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 11:00:21.599 UTC 387] DEBUG: Accepted socket 66 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 11:00:21.599 UTC 387] DEBUG: queued socket 66 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 11:00:21.666 UTC 387] DEBUG: Accepted socket 67 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 11:00:21.666 UTC 387] DEBUG: queued socket 67 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 11:00:21.860 UTC 387] DEBUG: Accepted socket 68 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 11:00:21.860 UTC 387] DEBUG: queued socket 68 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 11:00:32.681 UTC 387] DEBUG: Accepted socket 69 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 11:00:32.734 UTC 387] DEBUG: queued socket 69 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 11:00:38.673 UTC 387] DEBUG: Accepted socket 70 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 11:00:38.673 UTC 387] DEBUG: queued socket 70 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 11:00:45.939 UTC 387] DEBUG: Accepted socket 71 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 11:00:45.939 UTC 387] DEBUG: queued socket 71 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 11:00:45.956 UTC 387] DEBUG: Accepted socket 72 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 11:00:45.957 UTC 387] DEBUG: queued socket 72 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 11:00:45.957 UTC 387] DEBUG: Accepted socket 73 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 11:00:45.957 UTC 387] DEBUG: queued socket 73 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 11:00:46.225 UTC 387] DEBUG: Accepted socket 74 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 11:00:46.225 UTC 387] DEBUG: queued socket 74 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 11:00:46.749 UTC 387] DEBUG: Accepted socket 75 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 11:00:46.749 UTC 387] DEBUG: queued socket 75 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 11:00:47.023 UTC 387] DEBUG: Accepted socket 76 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 11:00:47.023 UTC 387] DEBUG: queued socket 76 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 11:01:16.227 UTC 387] DEBUG: Accepted socket 77 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 11:01:16.227 UTC 387] DEBUG: queued socket 77 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 11:01:16.227 UTC 387] DEBUG: Accepted socket 78 (src/webserver/civetweb/civetweb.c:20375)
[2024-12-08 11:01:16.227 UTC 387] DEBUG: queued socket 78 (src/webserver/civetweb/civetweb.c:20077)
[2024-12-08 11:01:16.229 UTC 387] DEBUG: Accepted socket 79 (src/webserver/civetweb/civetweb.c:20375)

after a few minutes...the cpu load is 'normal'...the threads are normal..but the webinterface is not working

@b0se
Copy link
Author

b0se commented Dec 8, 2024

okay..next try...i will create a new container with a fresh v6 install..without https...and then we will see

@kaechele
Copy link

I believe I'm hitting this as well.
I'll see if I can attach gdb when it happens. But it usually happens overnight, and interestingly enough it happens on both pihole instances that I run. So I sometimes wake up to a non-function local network because both pi-hole instances have crashed.

@DL6ER
Copy link
Member

DL6ER commented Dec 29, 2024

Sorry if I come across petty but: Does it really crash? As far as this issue goes, Pi-hole "just" consumes too much CPU to be still usable.

I prepared a special version for you which you can get via:

sudo pihole checkout ftl tweak/two_webthreads

which will launch only two web threads. This should keep DNS (and the overall rest of the system) still usable even when the web server goes nuts.

@kaechele
Copy link

Not at all petty. Just kind and helpful, as always.

I'll have to verify that the issue I'm seeing is in fact related to the web threads.
I've been running pihole-FTL with gdb attached but as they say: A watched pot never boils ;-)
It has yet to hang/crash.

@kaechele
Copy link

kaechele commented Jan 8, 2025

My issue turned out to be unrelated to the webserver threads. See #2154.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants