Caddy SSL to self-signed SSL reverse proxy example sought

1. The problem I’m having:

I am brand new to Caddy and loving it so far.

I know that its intended use as a reverse proxy is to have https on the front end to communicate with http on the backend.

However, for a few of my applications, I simply cannot do this (please trust me–I absolutely cannot change it, I know I know). I need to have Caddy HTTPS → Application HTTPS

I keep getting 502 errors on any application I attempt. I am using tls_insecure_skip_verify and all sorts of other directive commands and am getting nothing but 502 errors.

Also, a lot of the examples I see are for Caddy v1, even on this forum…so I figured I’d ask for v2.

2. Error messages and/or full log output:

If I may ask to skip the detailed portion of this and ask for an example instead.

A simple version of what I’m trying to do that is not working:

https://example.com:10443 {
   reverse_proxy 192.168.1.45:10443 {
      tls_insecure_skip_verify
   }
}

This does not work and produces 502s in curl and in the browser.

Note that in the example above, 192.168.1.45:10443 is using a self-signed cert.

I’ve read the documentation and tried using the self-signed pem file and pointing Caddy at it with tls_trust_pool file mycert.pem and I get the same result.

And yes, my curl can go to 192.168.1.45:10443 insecurely with -k and I do get the expected result. Going to it through https://example.com:10443 gives me:

< HTTP/2 502
< alt-svc: h3=":9443"; ma=2592000
< server: Caddy
< content-length: 0
< date: Thu, 05 Sep 2024 15:09:26 GMT

3. Caddy version:

v.2.8.4

4. How I installed and ran Caddy:

Direct install into Linux. Not running in a docker container

a. System environment:

Ubuntu Server 24

b. Command:

Running caddy as a service, so

service caddy reload

is what I use most.

c. Service/unit/compose file:

Let me know where I can find this–but I haven’t modified it from my apt install.

d. My complete Caddy config:

Happy to include in the future, if needed. But I’m mostly trying to learn by example. I keep messing with settings so anything I post here won’t be accurate anyway.

I think I need to have the pem file of the upstream server and even set the tls_hostname to the cert cn localhost … but just looking for anyone who has a working example.

Thank you for your help!

Howdy @baselinesKevin, welcome to the Caddy community!

I think that’s certainly the least complicated setup - but definitely not the only one and certainly not necessarily recommended above full-HTTPS!

It’s totally cool to have HTTPS backends. Caddy can handle them too. tls_insecure_skip_verify is indeed the usual suspect for dealing with untrusted backend HTTPS; in a production environment it’s usually best to get that backend certificate trusted, but when you can’t, you’re on the right track.

There’s a few things that might be breaking here, and it’s probably not an issue of whether the certificate is trusted. Early hunch is pointing me in the direction of maybe there’s something about Caddy’s request it doesn’t like - SNI, possibly. There’s ways for Caddy to handle those kinds of issues too, but we just need to figure out exactly what’s happening first - no point throwing darts at the wall and hoping one of them is the right solution.

You might’ve noticed in the help template you filled out, there was a link to https://caddyserver.com/docs/caddyfile/options#debug with a hint to enable it to collect logs for the problematic requests. We need that, because we’ll want to have a look at the upstream roundtrip logs (at minimum) to start getting some context.

Access and error logs from your upstream would also be helpful as well. Full curl -vL against both Caddy and directly to your upstream https://192.168.1.45:10443 wouldn’t hurt either (the whole result, not just the response headers).

1 Like

Hi @Whitestrake !

Ok, I guess I’ll start with the curl commands. The first is through caddy, from the server running caddy:

curl -vkL https://corp.baselinesinc.com:9443/jts/scr
* Host corp.baselinesinc.com:9443 was resolved.
* IPv6: (none)
* IPv4: 127.0.0.1
*   Trying 127.0.0.1:9443...
* Connected to corp.baselinesinc.com (127.0.0.1) port 9443
* ALPN: curl offers h2,http/1.1
* TLSv1.3 (OUT), TLS handshake, Client hello (1):
* TLSv1.3 (IN), TLS handshake, Server hello (2):
* TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
* TLSv1.3 (IN), TLS handshake, Certificate (11):
* TLSv1.3 (IN), TLS handshake, CERT verify (15):
* TLSv1.3 (IN), TLS handshake, Finished (20):
* TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
* TLSv1.3 (OUT), TLS handshake, Finished (20):
* SSL connection using TLSv1.3 / TLS_CHACHA20_POLY1305_SHA256 / X25519 / id-ecPublicKey
* ALPN: server accepted h2
* Server certificate:
*  subject: CN=corp.baselinesinc.com
*  start date: Sep  4 18:51:09 2024 GMT
*  expire date: Dec  3 18:51:08 2024 GMT
*  issuer: C=US; O=(STAGING) Let's Encrypt; CN=(STAGING) Pseudo Plum E5
*  SSL certificate verify result: unable to get local issuer certificate (20), continuing anyway.
*   Certificate level 0: Public key type EC/prime256v1 (256/128 Bits/secBits), signed using ecdsa-with-SHA384
*   Certificate level 1: Public key type EC/secp384r1 (384/192 Bits/secBits), signed using sha256WithRSAEncryption
* TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
* using HTTP/2
* [HTTP/2] [1] OPENED stream for https://corp.baselinesinc.com:9443/jts/scr
* [HTTP/2] [1] [:method: GET]
* [HTTP/2] [1] [:scheme: https]
* [HTTP/2] [1] [:authority: corp.baselinesinc.com:9443]
* [HTTP/2] [1] [:path: /jts/scr]
* [HTTP/2] [1] [user-agent: curl/8.5.0]
* [HTTP/2] [1] [accept: */*]
> GET /jts/scr HTTP/2
> Host: corp.baselinesinc.com:9443
> User-Agent: curl/8.5.0
> Accept: */*
>
< HTTP/2 502
< alt-svc: h3=":9443"; ma=2592000
< server: Caddy
< content-length: 0
< date: Fri, 06 Sep 2024 00:42:28 GMT
<
* Connection #0 to host corp.baselinesinc.com left intact

The second is direct to the application server, from the server running caddy:

curl -vkL https://192.168.1.111:9443/jts/scr
*   Trying 192.168.1.111:9443...
* Connected to 192.168.1.111 (192.168.1.111) port 9443
* ALPN: curl offers h2,http/1.1
* TLSv1.3 (OUT), TLS handshake, Client hello (1):
* TLSv1.3 (IN), TLS handshake, Server hello (2):
* TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
* TLSv1.3 (IN), TLS handshake, Certificate (11):
* TLSv1.3 (IN), TLS handshake, CERT verify (15):
* TLSv1.3 (IN), TLS handshake, Finished (20):
* TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
* TLSv1.3 (OUT), TLS handshake, Finished (20):
* SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384 / X25519 / RSASSA-PSS
* ALPN: server did not agree on a protocol. Uses default.
* Server certificate:
*  subject: OU=clm; CN=localhost
*  start date: Aug 27 13:03:51 2024 GMT
*  expire date: Aug 27 13:03:51 2025 GMT
*  issuer: OU=clm; CN=localhost
*  SSL certificate verify result: self-signed certificate (18), continuing anyway.
*   Certificate level 0: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption
* using HTTP/1.x
> GET /jts/scr HTTP/1.1
> Host: 192.168.1.111:9443
> User-Agent: curl/8.5.0
> Accept: */*
>
* TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
< HTTP/1.1 200 OK
< X-Powered-By: Servlet/3.0
< Strict-Transport-Security: max-age=31536000
< x-com-ibm-team-scenario: 192.168.1.51
< ETag: "cKvDMctKKdNg2cve1fxUUpJHkBM="
< Date: Fri, 06 Sep 2024 00:45:55 GMT
< Expires: Fri, 06 Sep 2024 00:45:55 GMT
< Cache-Control: public
< Content-Type: application/rdf+xml; charset=UTF-8
< Content-Language: en-US
< Content-Length: 17680
<
<?xml version="1.0"?>
<!--
EXPECTED APPLICATION STUFF HERE
 -->

I did notice an http2 vs http1.1 but that isn’t it – forcing curl with --http1.1 through caddy results in the same output.

x-com-ibm-team-scenario returns the ip address of the server hosting Caddy, as would be expected, but it’s another data point for us to confirm that I’m communicating from the same server as Caddy.

I’m using a sites-enabled type setup so here’s the site file:

https://corp.baselinesinc.com:9443 {
        reverse_proxy 192.168.1.111:9443 {
                transport http {
                        tls
                        tls_trust_pool file {
                                pem_file /etc/caddy/certs/elm71m10.pem
                        }
                        #compression off
                        tls_server_name localhost
                }
               header_up Host {upstream_hostport}
               header_up X-Real-IP {remote}
               header_up X-Forwarded-For {remote}
               header_up X-Forwarded-Port {server_port}
               header_up X-Forwarded-Proto {scheme}
        }
        log elm {
                output file /var/log/caddy/elm702.log {
                        roll_size 10mb
                        roll_keep 20
                        roll_keep_for 720h
                }
        }
}

Likely lots of stuff I don’t need here but this is the result of lots of trying.

Finally here’s my Caddyfile:

{
        debug
        acme_ca https://acme-staging-v02.api.letsencrypt.org/directory
        log default {
                format json
                include http.log.access
                output file /var/log/caddy/access.log {
                        roll_size 10MiB
                        roll_uncompressed
                        roll_local_time
                        roll_keep 5
                }
        }
}

corp.baselinesinc.com:80 corp.baselinesinc.com:443 {
        # Set this path to your site's directory.
        root * /usr/share/caddy

        # Enable the static file server.
        file_server

        # Another common task is to set up a reverse proxy:
        # reverse_proxy localhost:8080

        # Or serve a PHP site through php-fpm:
        # php_fastcgi localhost:9000

        log default
}

import /etc/caddy/sites-enabled/*

I’m not sure I have the debug logging the way you would like me to.

Thank you for all of your time. This got way more detailed than I would have liked. I am experimenting and love learning this type of thing and I appreciate working with anyone who teaches me how to diagnose and troubleshoot these sorts of problems.

Thank you again!

No worries, happy to help.

Yeah, that’s not a particularly worrying thing.

I’m glad to see the curl result to the app server is healthy, but it really does raise the question of exactly why Caddy’s returning a 502 here.

Something is differentiating Caddy from curl to your app server and it’s doing something different based on where the request is coming from. That or there’s something going wrong with Caddy, which I wouldn’t assume but is still a possibility.

That looks correct to me.

Now we need to see those debug logs from Caddy itself when you made that curl to Caddy. You’ll have some kind of upstream roundtrip result or possibly some kind of Caddy-generated error there that will point us to the next troubleshooting step.

1 Like

I looked through the log files and I don’t see anything that jumps out at me.

The files are pretty large so I hope inline displaying is the right way to show them.

One thing I thought of was maybe there could be a caddy curl type binary included with caddy. It would read the caddy config and let you do a curl like command to get detailed output of a given call. Just a thought.

If there’s a spot where debug logging occurs, let me know. I didn’t see anything obvious.

Site-specific log:

{"level":"error","ts":1725492230.1054864,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"62629","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/","headers":{"Sec-Fetch-Dest":["document"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-US,en;q=0.9"],"Priority":["u=0, i"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Fetch-Site":["none"],"Sec-Fetch-User":["?1"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"macOS\""],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-Mode":["navigate"],"Cache-Control":["no-cache"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002180925,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725492230.6000853,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"62629","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/","headers":{"Sec-Fetch-User":["?1"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-Site":["none"],"Sec-Fetch-Dest":["document"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Upgrade-Insecure-Requests":["1"],"Accept-Language":["en-US,en;q=0.9"],"Priority":["u=0, i"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["navigate"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Sec-Ch-Ua-Platform":["\"macOS\""]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.001997171,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725492230.8411264,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"62629","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/","headers":{"Sec-Ch-Ua-Platform":["\"macOS\""],"Sec-Fetch-Mode":["navigate"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-US,en;q=0.9"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-Dest":["document"],"Sec-Ch-Ua-Mobile":["?0"],"Upgrade-Insecure-Requests":["1"],"Sec-Fetch-Site":["none"],"Sec-Fetch-User":["?1"],"Cache-Control":["no-cache"],"Priority":["u=0, i"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002189676,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725492231.019315,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"62629","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/","headers":{"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"macOS\""],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Accept-Language":["en-US,en;q=0.9"],"Priority":["u=0, i"],"Pragma":["no-cache"],"Cache-Control":["no-cache"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["none"],"Sec-Fetch-Mode":["navigate"],"Sec-Fetch-User":["?1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Upgrade-Insecure-Requests":["1"],"Sec-Fetch-Dest":["document"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002215869,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725543811.0517666,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"50484","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Cache-Control":["max-age=0"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Ch-Ua-Platform":["\"macOS\""],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["document"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-US,en;q=0.9"],"Sec-Fetch-Site":["none"],"Sec-Fetch-Mode":["navigate"],"Cookie":["REDACTED"],"Priority":["u=0, i"],"Sec-Ch-Ua-Mobile":["?0"],"Upgrade-Insecure-Requests":["1"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-User":["?1"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.003585678,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725543812.710381,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"50484","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Ch-Ua-Platform":["\"macOS\""],"Sec-Fetch-Site":["none"],"Accept-Language":["en-US,en;q=0.9"],"Priority":["u=0, i"],"Sec-Fetch-Mode":["navigate"],"Sec-Fetch-Dest":["document"],"Cookie":["REDACTED"],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Upgrade-Insecure-Requests":["1"],"Sec-Fetch-User":["?1"],"Accept-Encoding":["gzip, deflate, br, zstd"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002421915,"size":0,"status":502,"resp_headers":{"Alt-Svc":["h3=\":9443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"error","ts":1725543815.1279058,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"50484","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Sec-Fetch-Site":["none"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-US,en;q=0.9"],"Cookie":["REDACTED"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"Priority":["u=0, i"],"Sec-Ch-Ua-Platform":["\"macOS\""],"Sec-Fetch-User":["?1"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["navigate"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-Dest":["document"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Ch-Ua-Mobile":["?0"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002324447,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725543816.6227124,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"50484","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Accept-Language":["en-US,en;q=0.9"],"Cookie":["REDACTED"],"Sec-Ch-Ua-Platform":["\"macOS\""],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Upgrade-Insecure-Requests":["1"],"Sec-Fetch-Site":["none"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["navigate"],"Sec-Fetch-User":["?1"],"Sec-Fetch-Dest":["document"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Priority":["u=0, i"],"Cache-Control":["max-age=0"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002161129,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725543852.377573,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"56730","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/","headers":{"User-Agent":["curl/8.5.0"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002430091,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725543860.608823,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"56746","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts/scr","headers":{"User-Agent":["curl/8.5.0"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002295117,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725544215.2033222,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"51015","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Sec-Fetch-User":["?1"],"Sec-Fetch-Dest":["document"],"Cookie":["REDACTED"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-US,en;q=0.9"],"Priority":["u=0, i"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Ch-Ua-Platform":["\"macOS\""],"Upgrade-Insecure-Requests":["1"],"Sec-Fetch-Site":["none"],"Sec-Fetch-Mode":["navigate"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.00349536,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725544475.804623,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"51359","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Sec-Fetch-User":["?1"],"Sec-Ch-Ua-Mobile":["?0"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Priority":["u=0, i"],"Cookie":["REDACTED"],"Pragma":["no-cache"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Fetch-Mode":["navigate"],"Sec-Fetch-Dest":["document"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-US,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"macOS\""],"Upgrade-Insecure-Requests":["1"],"Sec-Fetch-Site":["none"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002676301,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725544546.2112176,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"51425","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Cache-Control":["no-cache"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Accept-Language":["en-US,en;q=0.9"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Ch-Ua-Platform":["\"macOS\""],"Sec-Fetch-User":["?1"],"Sec-Fetch-Dest":["document"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":["REDACTED"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Upgrade-Insecure-Requests":["1"],"Sec-Fetch-Site":["none"],"Sec-Fetch-Mode":["navigate"],"Priority":["u=0, i"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.00183133,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725544547.2182915,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"51425","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Upgrade-Insecure-Requests":["1"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-Site":["none"],"Sec-Fetch-Mode":["navigate"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Language":["en-US,en;q=0.9"],"Pragma":["no-cache"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Cookie":["REDACTED"],"Sec-Ch-Ua-Platform":["\"macOS\""],"Sec-Fetch-Dest":["document"],"Priority":["u=0, i"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Fetch-User":["?1"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002112762,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725545077.849665,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"51985","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Sec-Fetch-User":["?1"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["none"],"Sec-Fetch-Dest":["document"],"Cookie":["REDACTED"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Priority":["u=0, i"],"Sec-Ch-Ua-Platform":["\"macOS\""],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-Mode":["navigate"],"Accept-Language":["en-US,en;q=0.9"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.003657612,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725545079.155954,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"51985","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Sec-Fetch-Dest":["document"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Fetch-User":["?1"],"Accept-Language":["en-US,en;q=0.9"],"Cookie":["REDACTED"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-Site":["none"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"macOS\""],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Priority":["u=0, i"],"Sec-Fetch-Mode":["navigate"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002178278,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725545080.1743689,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"51985","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Sec-Ch-Ua-Platform":["\"macOS\""],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-Site":["none"],"Sec-Fetch-User":["?1"],"Sec-Fetch-Dest":["document"],"Pragma":["no-cache"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["navigate"],"Cookie":["REDACTED"],"Priority":["u=0, i"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-US,en;q=0.9"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002953904,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725545082.9001603,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"51999","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Sec-Fetch-Dest":["document"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"macOS\""],"Upgrade-Insecure-Requests":["1"],"Sec-Fetch-Site":["none"],"Cookie":["REDACTED"],"Priority":["u=0, i"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Fetch-Mode":["navigate"],"Sec-Fetch-User":["?1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-US,en;q=0.9"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002142102,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725545180.6007168,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"52063","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Cache-Control":["max-age=0"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-US,en;q=0.9"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-User":["?1"],"Sec-Fetch-Dest":["document"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"macOS\""],"Sec-Fetch-Mode":["navigate"],"Cookie":["REDACTED"],"Priority":["u=0, i"],"Sec-Fetch-Site":["none"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.003190793,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725545187.9786808,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"52071","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Sec-Ch-Ua-Platform":["\"macOS\""],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-Site":["none"],"Sec-Ch-Ua-Mobile":["?0"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-US,en;q=0.9"],"Priority":["u=0, i"],"Sec-Fetch-Mode":["navigate"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Fetch-User":["?1"],"Pragma":["no-cache"],"Upgrade-Insecure-Requests":["1"],"Sec-Fetch-Dest":["document"],"Cookie":["REDACTED"],"Cache-Control":["no-cache"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002038606,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725545269.4758978,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"52152","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Upgrade-Insecure-Requests":["1"],"Sec-Fetch-Site":["none"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"macOS\""],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["navigate"],"Sec-Fetch-User":["?1"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Ch-Ua-Mobile":["?0"],"Cookie":["REDACTED"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Accept-Language":["en-US,en;q=0.9"],"Priority":["u=0, i"],"Pragma":["no-cache"],"Sec-Fetch-Dest":["document"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.00339094,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725545336.369279,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"52196","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Pragma":["no-cache"],"Sec-Fetch-User":["?1"],"Cookie":["REDACTED"],"Priority":["u=0, i"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["none"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Platform":["\"macOS\""],"Upgrade-Insecure-Requests":["1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-Mode":["navigate"],"Sec-Fetch-Dest":["document"],"Accept-Language":["en-US,en;q=0.9"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.003002958,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725545368.8054857,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"52259","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Pragma":["no-cache"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-Site":["none"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["navigate"],"Accept-Language":["en-US,en;q=0.9"],"Priority":["u=0, i"],"Cache-Control":["no-cache"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":["REDACTED"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Ch-Ua-Platform":["\"macOS\""],"Upgrade-Insecure-Requests":["1"],"Sec-Fetch-User":["?1"],"Sec-Fetch-Dest":["document"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002389043,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725545474.0257351,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"52340","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-US,en;q=0.9"],"Cache-Control":["no-cache"],"Sec-Fetch-Site":["none"],"Sec-Fetch-User":["?1"],"Sec-Ch-Ua-Mobile":["?0"],"Upgrade-Insecure-Requests":["1"],"Sec-Fetch-Dest":["document"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Sec-Fetch-Mode":["navigate"],"Cookie":["REDACTED"],"Priority":["u=0, i"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Ch-Ua-Platform":["\"macOS\""],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.003185211,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725545529.8364854,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"52399","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Sec-Ch-Ua-Platform":["\"macOS\""],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Priority":["u=0, i"],"Cache-Control":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Upgrade-Insecure-Requests":["1"],"Sec-Fetch-User":["?1"],"Sec-Fetch-Mode":["navigate"],"Sec-Fetch-Dest":["document"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":["REDACTED"],"Pragma":["no-cache"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Fetch-Site":["none"],"Accept-Language":["en-US,en;q=0.9"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.003005888,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725545571.9295416,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"52431","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/","headers":{"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-Site":["none"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["document"],"Priority":["u=0, i"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Ch-Ua-Platform":["\"macOS\""],"Upgrade-Insecure-Requests":["1"],"Sec-Fetch-Mode":["navigate"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Cookie":["REDACTED"],"Sec-Fetch-User":["?1"],"Accept-Language":["en-US,en;q=0.9"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.003259733,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725546849.6845386,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"53627","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Sec-Ch-Ua-Platform":["\"macOS\""],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-Site":["none"],"Sec-Fetch-Mode":["navigate"],"Sec-Fetch-Dest":["document"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-US,en;q=0.9"],"Cookie":["REDACTED"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Priority":["u=0, i"],"Sec-Fetch-User":["?1"],"Sec-Ch-Ua-Mobile":["?0"],"Upgrade-Insecure-Requests":["1"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.003416768,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725546851.7713819,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"53630","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Sec-Fetch-Site":["cross-site"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-US,en;q=0.9"],"Cache-Control":["max-age=0"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Dest":["document"],"Cookie":["REDACTED"],"Sec-Ch-Ua-Platform":["\"macOS\""],"Sec-Fetch-User":["?1"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-Mode":["navigate"],"Priority":["u=0, i"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.00179594,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725546875.7937,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"37076","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts/scr","headers":{"User-Agent":["curl/8.5.0"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002178125,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725546994.2607355,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"53766","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Upgrade-Insecure-Requests":["1"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-Dest":["document"],"Sec-Ch-Ua-Platform":["\"macOS\""],"Sec-Fetch-Mode":["navigate"],"Sec-Fetch-User":["?1"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-US,en;q=0.9"],"Cookie":["REDACTED"],"Pragma":["no-cache"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Site":["cross-site"],"Priority":["u=0, i"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.003268363,"size":0,"status":502,"resp_headers":{"Alt-Svc":["h3=\":9443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"error","ts":1725546999.7167487,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"45680","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts/scr","headers":{"User-Agent":["curl/8.5.0"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002108216,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725547063.1906981,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"51760","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts/scr","headers":{"User-Agent":["curl/8.5.0"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":3.003464284,"size":0,"status":502,"resp_headers":{"Alt-Svc":["h3=\":9443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"error","ts":1725547185.391254,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"53957","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Pragma":["no-cache"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Ch-Ua-Platform":["\"macOS\""],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-Site":["cross-site"],"Sec-Fetch-Dest":["document"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Accept-Language":["en-US,en;q=0.9"],"Cookie":["REDACTED"],"Upgrade-Insecure-Requests":["1"],"Priority":["u=0, i"],"Sec-Ch-Ua-Mobile":["?0"],"Sec-Fetch-Mode":["navigate"],"Sec-Fetch-User":["?1"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":3.003241706,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725547226.120843,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"37432","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts/scr","headers":{"Accept":["*/*"],"User-Agent":["curl/8.5.0"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":3.003152535,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725547438.4990675,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"49810","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/","headers":{"User-Agent":["curl/8.5.0"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":3.00192791,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725547967.3040643,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"54807","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts","headers":{"Sec-Ch-Ua-Mobile":["?0"],"Upgrade-Insecure-Requests":["1"],"Priority":["u=0, i"],"Sec-Fetch-Mode":["navigate"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Sec-Fetch-Dest":["document"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-Site":["cross-site"],"Sec-Fetch-User":["?1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Pragma":["no-cache"],"Cache-Control":["no-cache"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Ch-Ua-Platform":["\"macOS\""],"Accept-Language":["en-US,en;q=0.9"],"Cookie":["REDACTED"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":3.004150865,"size":0,"status":502,"resp_headers":{"Alt-Svc":["h3=\":9443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"error","ts":1725547974.0016701,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"54814","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/","headers":{"Sec-Fetch-Site":["none"],"Sec-Fetch-Mode":["navigate"],"Cookie":["REDACTED"],"Sec-Ch-Ua":["\"Not)A;Brand\";v=\"99\", \"Google Chrome\";v=\"127\", \"Chromium\";v=\"127\""],"Sec-Ch-Ua-Mobile":["?0"],"User-Agent":["Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"],"Accept-Language":["en-US,en;q=0.9"],"Sec-Ch-Ua-Platform":["\"macOS\""],"Sec-Fetch-User":["?1"],"Accept-Encoding":["gzip, deflate, br, zstd"],"Upgrade-Insecure-Requests":["1"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"],"Sec-Fetch-Dest":["document"],"Priority":["u=0, i"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":3.003659297,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725547987.352125,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"46018","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/","headers":{"User-Agent":["curl/8.5.0"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":3.003887441,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725548966.6821573,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"192.168.1.1","remote_port":"38422","client_ip":"192.168.1.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/","headers":{"User-Agent":["curl/8.5.0"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":3.003908886,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725578674.219834,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"127.0.0.1","remote_port":"40256","client_ip":"127.0.0.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts/scr","headers":{"User-Agent":["curl/8.5.0"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.003834836,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725578681.7524874,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"127.0.0.1","remote_port":"59654","client_ip":"127.0.0.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts/scr","headers":{"Accept":["*/*"],"User-Agent":["curl/8.5.0"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002366331,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725578689.584323,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"127.0.0.1","remote_port":"59656","client_ip":"127.0.0.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/","headers":{"User-Agent":["curl/8.5.0"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002943176,"size":0,"status":502,"resp_headers":{"Alt-Svc":["h3=\":9443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"error","ts":1725582087.251223,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"127.0.0.1","remote_port":"43492","client_ip":"127.0.0.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts/scr","headers":{"User-Agent":["curl/8.5.0"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002673086,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725582232.6887755,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"127.0.0.1","remote_port":"38920","client_ip":"127.0.0.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts/scr","headers":{"User-Agent":["curl/8.5.0"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.004985855,"size":0,"status":502,"resp_headers":{"Alt-Svc":["h3=\":9443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"error","ts":1725582254.6869247,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"127.0.0.1","remote_port":"42480","client_ip":"127.0.0.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts/scr","headers":{"User-Agent":["curl/8.5.0"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002128361,"size":0,"status":502,"resp_headers":{"Alt-Svc":["h3=\":9443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"error","ts":1725582260.9353259,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"127.0.0.1","remote_port":"42496","client_ip":"127.0.0.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts/scr","headers":{"User-Agent":["curl/8.5.0"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002238153,"size":0,"status":502,"resp_headers":{"Alt-Svc":["h3=\":9443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"error","ts":1725582313.0197523,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"127.0.0.1","remote_port":"34284","client_ip":"127.0.0.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts/scr","headers":{"User-Agent":["curl/8.5.0"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.00351648,"size":0,"status":502,"resp_headers":{"Alt-Svc":["h3=\":9443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"error","ts":1725582654.4989107,"logger":"http.log.access.log0","msg":"handled request","request":{"remote_ip":"127.0.0.1","remote_port":"45214","client_ip":"127.0.0.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts/scr","headers":{"User-Agent":["curl/8.5.0"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.005422908,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725582817.9397721,"logger":"http.log.access.elm","msg":"handled request","request":{"remote_ip":"127.0.0.1","remote_port":"57696","client_ip":"127.0.0.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts/scr","headers":{"Accept":["*/*"],"User-Agent":["curl/8.5.0"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.004710935,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725583348.3051972,"logger":"http.log.access.elm","msg":"handled request","request":{"remote_ip":"127.0.0.1","remote_port":"35126","client_ip":"127.0.0.1","proto":"HTTP/2.0","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts/scr","headers":{"User-Agent":["curl/8.5.0"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"h2","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.002785188,"size":0,"status":502,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":9443\"; ma=2592000"]}}
{"level":"error","ts":1725583822.203103,"logger":"http.log.access.elm","msg":"handled request","request":{"remote_ip":"127.0.0.1","remote_port":"45618","client_ip":"127.0.0.1","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com:9443","uri":"/jts/scr","headers":{"User-Agent":["curl/8.5.0"],"Accept":["*/*"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.004204475,"size":0,"status":502,"resp_headers":{"Alt-Svc":["h3=\":9443\"; ma=2592000"],"Server":["Caddy"]}}

Caddy access.log:

{"level":"info","ts":1725624550.2581367,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env-sample","headers":{"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000134389,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624550.4761133,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.backup","headers":{"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000167105,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624550.7418342,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.dev","headers":{"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000151607,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624550.9731498,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.dev.local","headers":{"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000188043,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624552.4068403,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.development.local","headers":{"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000140078,"size":0,"status":404,"resp_headers":{"Alt-Svc":["h3=\":443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"info","ts":1725624552.66172,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.development.sample","headers":{"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000167195,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624552.8806696,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.dist","headers":{"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000218052,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624553.1436787,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.docker","headers":{"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000258949,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624553.4080026,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.docker.dev","headers":{"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000144318,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624554.2822638,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.example","headers":{"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000183469,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624554.4989662,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.local","headers":{"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000129125,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624554.7707589,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.prod","headers":{"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000267897,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624555.669789,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.prod.local","headers":{"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000204367,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624555.8933716,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.production","headers":{"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000135193,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624556.1249585,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.production.local","headers":{"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000243638,"size":0,"status":404,"resp_headers":{"Alt-Svc":["h3=\":443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"info","ts":1725624557.560346,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.sample","headers":{"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000128803,"size":0,"status":404,"resp_headers":{"Alt-Svc":["h3=\":443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"info","ts":1725624557.7797096,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.save","headers":{"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000333457,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624558.0095303,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.stage","headers":{"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000212343,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624559.451597,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.travis","headers":{"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000284816,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624559.7053912,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.envrc","headers":{"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000165322,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624559.9550104,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.envs","headers":{"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000158312,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624560.198154,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env~","headers":{"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000168204,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624560.734559,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/_profiler/phpinfo","headers":{"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000226289,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624560.9680843,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/phpinfo.php","headers":{"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000165789,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624561.1843383,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/info.php","headers":{"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000152515,"size":0,"status":404,"resp_headers":{"Alt-Svc":["h3=\":443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"info","ts":1725624561.398258,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/symfony/_profiler/phpinfo","headers":{"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000133939,"size":0,"status":404,"resp_headers":{"Alt-Svc":["h3=\":443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"info","ts":1725624561.6310487,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/phpinfo","headers":{"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000135674,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624562.297395,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/infophp.php","headers":{"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000137273,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624562.975542,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/php_info.php","headers":{"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000219571,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624563.2035458,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/test.php","headers":{"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000125538,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624563.4423635,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/i.php","headers":{"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000139458,"size":0,"status":404,"resp_headers":{"Alt-Svc":["h3=\":443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"info","ts":1725624563.7020013,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/asdf.php","headers":{"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000123022,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624564.436647,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/pinfo.php","headers":{"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000171171,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624565.1699445,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/phpversion.php","headers":{"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000188373,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624565.9043052,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/time.php","headers":{"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000126604,"size":0,"status":404,"resp_headers":{"Alt-Svc":["h3=\":443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"info","ts":1725624566.6086776,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/temp.php","headers":{"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000117573,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624566.8352716,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/old_phpinfo.php","headers":{"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000127697,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624567.111247,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/infos.php","headers":{"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000157001,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624567.3413742,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/linusadmin-phpinfo.php","headers":{"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000144347,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624567.590244,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/php-info.php","headers":{"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000127583,"size":0,"status":404,"resp_headers":{"Alt-Svc":["h3=\":443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"info","ts":1725624568.2778242,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/dashboard/phpinfo.php","headers":{"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000158693,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624568.9792302,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/phpinfo.php3","headers":{"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.00018369,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624570.29467,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/phpinfo.php4","headers":{"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000193506,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624570.5191689,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/phpinfo.php5","headers":{"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.00016832,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624571.1608562,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/phpinfos.php","headers":{"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000152319,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624571.3763955,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/_profiler/phpinfo.php","headers":{"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000107101,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624572.0625265,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/aws.yml","headers":{"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000162021,"size":0,"status":404,"resp_headers":{"Alt-Svc":["h3=\":443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"info","ts":1725624572.723857,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.env.bak","headers":{"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000174967,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624572.977865,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/config/aws.yml","headers":{"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.0001617,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624574.0130665,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/login?pp=enable&pp=env","headers":{"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000138792,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624574.2395573,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/?pp=enable&pp=env","headers":{"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.001224778,"size":18630,"status":200,"resp_headers":{"Content-Length":["18630"],"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"],"Vary":["Accept-Encoding"],"Etag":["\"d1pip176pla8edi\""],"Content-Type":["text/html; charset=utf-8"],"Last-Modified":["Sun, 02 Jun 2024 12:07:29 GMT"],"Accept-Ranges":["bytes"]}}
{"level":"info","ts":1725624576.835929,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/?pp=env&pp=env","headers":{"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.001288435,"size":18630,"status":200,"resp_headers":{"Alt-Svc":["h3=\":443\"; ma=2592000"],"Vary":["Accept-Encoding"],"Etag":["\"d1pip176pla8edi\""],"Content-Type":["text/html; charset=utf-8"],"Last-Modified":["Sun, 02 Jun 2024 12:07:29 GMT"],"Accept-Ranges":["bytes"],"Content-Length":["18630"],"Server":["Caddy"]}}
{"level":"info","ts":1725624577.8166277,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.aws/credentials","headers":{"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000190976,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624578.033161,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.aws/credentials","headers":{"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000102515,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624578.3905628,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/config.js","headers":{"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.00022583,"size":0,"status":404,"resp_headers":{"Alt-Svc":["h3=\":443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"info","ts":1725624578.616153,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/helpers/utility.js","headers":{"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000293159,"size":0,"status":404,"resp_headers":{"Alt-Svc":["h3=\":443\"; ma=2592000"],"Server":["Caddy"]}}
{"level":"info","ts":1725624578.8825572,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/config/config.json","headers":{"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000196652,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624579.113576,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/wp-config.php.bak","headers":{"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000239743,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624579.3270614,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/wp-config.php.old","headers":{"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"],"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000132481,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}
{"level":"info","ts":1725624579.5996654,"logger":"http.log.access.default","msg":"handled request","request":{"remote_ip":"185.236.23.54","remote_port":"64067","client_ip":"185.236.23.54","proto":"HTTP/1.1","method":"GET","host":"corp.baselinesinc.com","uri":"/.vscode/sftp.json","headers":{"Cache-Control":["max-age=0"],"Upgrade-Insecure-Requests":["1"],"User-Agent":["Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36"],"Accept":["text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"],"Accept-Encoding":["gzip, deflate"],"Accept-Language":["en-US,en;q=0.9,fr;q=0.8"],"Connection":["keep-alive"]},"tls":{"resumed":false,"version":772,"cipher_suite":4867,"proto":"http/1.1","server_name":"corp.baselinesinc.com"}},"bytes_read":0,"user_id":"","duration":0.000195744,"size":0,"status":404,"resp_headers":{"Server":["Caddy"],"Alt-Svc":["h3=\":443\"; ma=2592000"]}}

Debug logs go to stdout by default - since you’re running Caddy as a systemd service, they should be in journalctl.

I think the command we usually recommend to view these is: journalctl -u caddy --no-pager | less +G

1 Like

I don’t see anything specific to “debug” level…here are the last few lines from yesterday. I did another curl before doing this.

Anywhere else I can look?

Sep 07 17:40:13 caddy systemd[1]: Reloading caddy.service - Caddy...
Sep 07 17:40:14 caddy caddy[3354570]: {"level":"info","ts":1725730814.0312853,"msg":"using config from file","file":"/etc/caddy/Caddyfile"}
Sep 07 17:40:14 caddy caddy[3354570]: {"level":"warn","ts":1725730814.0370092,"logger":"caddyfile","msg":"Unnecessary header_up X-Forwarded-For: the reverse proxy's default behavior is to pass headers to the upstream"}
Sep 07 17:40:14 caddy caddy[3354570]: {"level":"warn","ts":1725730814.0370862,"logger":"caddyfile","msg":"Unnecessary header_up X-Forwarded-Proto: the reverse proxy's default behavior is to pass headers to the upstream"}
Sep 07 17:40:14 caddy caddy[3354570]: {"level":"info","ts":1725730814.0443146,"msg":"adapted config to JSON","adapter":"caddyfile"}
Sep 07 17:40:14 caddy systemd[1]: Reloaded caddy.service - Caddy.

If debug was successfully applied, I would expect much much more logging to be occurring.

We should be seeing a tls_get_certificate event, tls.handshake certificate selection, http.handlers.reverse_proxy upstream selection and upstream roundtrip. All of that should happen immediately before the ERROR is emitted.

Are you sure the Caddyfile you linked is the Caddyfile being loaded?

1 Like

Well, I cant be 100% sure as I’m new to caddy, but what I can tell you is that I’ve made errors in /etc/caddy/Caddyfile and then Caddy would not restart.

I just did a stop and start. The same journal command outputs this:

Sep 09 04:14:36 caddy systemd[1]: Starting caddy.service - Caddy...
Sep 09 04:14:36 caddy caddy[1262374]: caddy.HomeDir=/var/lib/caddy
Sep 09 04:14:36 caddy caddy[1262374]: caddy.AppDataDir=/var/lib/caddy/.local/share/caddy
Sep 09 04:14:36 caddy caddy[1262374]: caddy.AppConfigDir=/var/lib/caddy/.config/caddy
Sep 09 04:14:36 caddy caddy[1262374]: caddy.ConfigAutosavePath=/var/lib/caddy/.config/caddy/autosave.json
Sep 09 04:14:36 caddy caddy[1262374]: caddy.Version=v2.8.4 h1:q3pe0wpBj1OcHFZ3n/1nl4V4bxBrYoSoab7rL9BMYNk=
Sep 09 04:14:36 caddy caddy[1262374]: runtime.GOOS=linux
Sep 09 04:14:36 caddy caddy[1262374]: runtime.GOARCH=amd64
Sep 09 04:14:36 caddy caddy[1262374]: runtime.Compiler=gc
Sep 09 04:14:36 caddy caddy[1262374]: runtime.NumCPU=6
Sep 09 04:14:36 caddy caddy[1262374]: runtime.GOMAXPROCS=6
Sep 09 04:14:36 caddy caddy[1262374]: runtime.Version=go1.22.3
Sep 09 04:14:36 caddy caddy[1262374]: os.Getwd=/
Sep 09 04:14:36 caddy caddy[1262374]: LANG=en_US.UTF-8
Sep 09 04:14:36 caddy caddy[1262374]: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/snap/bin
Sep 09 04:14:36 caddy caddy[1262374]: NOTIFY_SOCKET=/run/systemd/notify
Sep 09 04:14:36 caddy caddy[1262374]: USER=caddy
Sep 09 04:14:36 caddy caddy[1262374]: LOGNAME=caddy
Sep 09 04:14:36 caddy caddy[1262374]: HOME=/var/lib/caddy
Sep 09 04:14:36 caddy caddy[1262374]: INVOCATION_ID=d3486b3513c84b60a0de3498890405a6
Sep 09 04:14:36 caddy caddy[1262374]: JOURNAL_STREAM=8:24824411
Sep 09 04:14:36 caddy caddy[1262374]: SYSTEMD_EXEC_PID=1262374
Sep 09 04:14:36 caddy caddy[1262374]: MEMORY_PRESSURE_WATCH=/sys/fs/cgroup/system.slice/caddy.service/memory.pressure
Sep 09 04:14:36 caddy caddy[1262374]: MEMORY_PRESSURE_WRITE=c29tZSAyMDAwMDAgMjAwMDAwMAA=
Sep 09 04:14:36 caddy caddy[1262374]: {"level":"info","ts":1725855276.425299,"msg":"using config from file","file":"/etc/caddy/Caddyfile"}
Sep 09 04:14:36 caddy caddy[1262374]: {"level":"warn","ts":1725855276.4274638,"logger":"caddyfile","msg":"Unnecessary header_up X-Forwarded-For: the reverse proxy's default behavior is to pass headers to the upstream"}
Sep 09 04:14:36 caddy caddy[1262374]: {"level":"warn","ts":1725855276.4274862,"logger":"caddyfile","msg":"Unnecessary header_up X-Forwarded-Proto: the reverse proxy's default behavior is to pass headers to the upstream"}
Sep 09 04:14:36 caddy caddy[1262374]: {"level":"info","ts":1725855276.4307575,"msg":"adapted config to JSON","adapter":"caddyfile"}
Sep 09 04:14:36 caddy caddy[1262374]: {"level":"info","ts":1725855276.4323711,"msg":"redirected default logger","from":"stderr","to":"/var/log/caddy/access.log"}
Sep 09 04:14:37 caddy systemd[1]: Started caddy.service - Caddy.

So I can see that it is using /etc/caddy/Caddyfile, which I have not changed since posting but I’ll repost just in case:

Command:

root@caddy:/etc/caddy# cat /etc/caddy/Caddyfile

Output:

# The Caddyfile is an easy way to configure your Caddy web server.
#
# Unless the file starts with a global options block, the first
# uncommented line is always the address of your site.
#
# To use your own domain name (with automatic HTTPS), first make
# sure your domain's A/AAAA DNS records are properly pointed to
# this machine's public IP, then replace ":80" below with your
# domain name.
{
	debug
	acme_ca https://acme-staging-v02.api.letsencrypt.org/directory
	log default {
		format json
		include http.log.access
		output file /var/log/caddy/access.log {
			roll_size 10MiB
			roll_uncompressed
			roll_local_time
			roll_keep 5
		}
	}
}

corp.baselinesinc.com:80 corp.baselinesinc.com:443 {
	# Set this path to your site's directory.
	root * /usr/share/caddy

	# Enable the static file server.
	file_server

	# Another common task is to set up a reverse proxy:
	# reverse_proxy localhost:8080

	# Or serve a PHP site through php-fpm:
	# php_fastcgi localhost:9000

	log default
}

import /etc/caddy/sites-enabled/*

# Refer to the Caddy docs for more information:
# https://caddyserver.com/docs/caddyfile

I appreciate your continued support.

A couple more for you.

The log file for the specific site does not show any debug. It only shows “error”

So I issued this command based on the journalctl startup info:

cat /var/lib/caddy/.config/caddy/autosave.json

and I got this (i prettied it up):

{
  "apps": {
    "http": {
      "servers": {
        "srv0": {
          "listen": [":443"],
          "logs": {
            "logger_names": { "corp.baselinesinc.com": ["default"] },
            "skip_hosts": [
              "erp.baselinesinc.com",
              "issues.baselinesinc.com",
              "plane.baselinesinc.com"
            ]
          },
          "routes": [
            {
              "handle": [
                {
                  "handler": "subroute",
                  "routes": [
                    {
                      "handle": [
                        {
                          "handler": "reverse_proxy",
                          "upstreams": [{ "dial": "localhost:8100" }]
                        }
                      ]
                    }
                  ]
                }
              ],
              "match": [{ "host": ["issues.baselinesinc.com"] }],
              "terminal": true
            },
            {
              "handle": [
                {
                  "handler": "subroute",
                  "routes": [
                    {
                      "handle": [
                        {
                          "handler": "reverse_proxy",
                          "headers": {
                            "request": {
                              "set": {
                                "Host": [
                                  "{http.reverse_proxy.upstream.hostport}"
                                ]
                              }
                            }
                          },
                          "upstreams": [{ "dial": "192.168.1.38:80" }]
                        }
                      ]
                    }
                  ]
                }
              ],
              "match": [{ "host": ["plane.baselinesinc.com"] }],
              "terminal": true
            },
            {
              "handle": [
                {
                  "handler": "subroute",
                  "routes": [
                    {
                      "handle": [
                        { "handler": "vars", "root": "/usr/share/caddy" },
                        {
                          "handler": "file_server",
                          "hide": ["/etc/caddy/Caddyfile"]
                        }
                      ]
                    }
                  ]
                }
              ],
              "match": [{ "host": ["corp.baselinesinc.com"] }],
              "terminal": true
            },
            {
              "handle": [
                {
                  "handler": "subroute",
                  "routes": [
                    {
                      "handle": [
                        {
                          "handler": "reverse_proxy",
                          "upstreams": [{ "dial": "localhost:8080" }]
                        }
                      ]
                    }
                  ]
                }
              ],
              "match": [{ "host": ["erp.baselinesinc.com"] }],
              "terminal": true
            }
          ]
        },
        "srv1": {
          "listen": [":80"],
          "logs": { "logger_names": { "corp.baselinesinc.com": ["default"] } },
          "routes": [
            {
              "handle": [
                {
                  "handler": "subroute",
                  "routes": [
                    {
                      "handle": [
                        { "handler": "vars", "root": "/usr/share/caddy" },
                        {
                          "handler": "file_server",
                          "hide": ["/etc/caddy/Caddyfile"]
                        }
                      ]
                    }
                  ]
                }
              ],
              "match": [{ "host": ["corp.baselinesinc.com"] }],
              "terminal": true
            }
          ]
        },
        "srv2": {
          "listen": [":8123"],
          "routes": [
            {
              "handle": [
                {
                  "handler": "subroute",
                  "routes": [
                    {
                      "handle": [
                        {
                          "handler": "reverse_proxy",
                          "transport": {
                            "protocol": "http",
                            "tls": { "insecure_skip_verify": true }
                          },
                          "upstreams": [{ "dial": "ubuntuclm.local:8123" }]
                        }
                      ],
                      "match": [{ "path": ["/*"] }]
                    }
                  ]
                }
              ],
              "match": [{ "host": ["corp.baselinesinc.com"] }],
              "terminal": true
            }
          ]
        },
        "srv3": {
          "listen": [":9443"],
          "logs": { "logger_names": { "corp.baselinesinc.com": ["elm"] } },
          "routes": [
            {
              "handle": [
                {
                  "handler": "subroute",
                  "routes": [
                    {
                      "handle": [
                        {
                          "handler": "reverse_proxy",
                          "headers": {
                            "request": {
                              "set": {
                                "Host": [
                                  "{http.reverse_proxy.upstream.hostport}"
                                ],
                                "X-Forwarded-For": ["{http.request.remote}"],
                                "X-Forwarded-Port": ["{server_port}"],
                                "X-Forwarded-Proto": ["{http.request.scheme}"],
                                "X-Real-Ip": ["{http.request.remote}"]
                              }
                            }
                          },
                          "transport": {
                            "protocol": "http",
                            "tls": {
                              "ca": {
                                "pem_files": ["/etc/caddy/certs/elm71m10.pem"],
                                "provider": "file"
                              },
                              "server_name": "localhost"
                            }
                          },
                          "upstreams": [{ "dial": "ubuntuclm.local:9443" }]
                        }
                      ]
                    }
                  ]
                }
              ],
              "match": [{ "host": ["corp.baselinesinc.com"] }],
              "terminal": true
            }
          ]
        }
      }
    },
    "tls": {
      "automation": {
        "policies": [
          {
            "issuers": [
              {
                "ca": "https://acme-staging-v02.api.letsencrypt.org/directory",
                "module": "acme"
              }
            ],
            "subjects": [
              "issues.baselinesinc.com",
              "plane.baselinesinc.com",
              "corp.baselinesinc.com",
              "erp.baselinesinc.com"
            ]
          }
        ]
      }
    }
  },
  "logging": {
    "logs": {
      "default": {
        "encoder": { "format": "json" },
        "exclude": ["http.log.access.elm"],
        "include": ["http.log.access"],
        "level": "DEBUG",
        "writer": {
          "filename": "/var/log/caddy/access.log",
          "output": "file",
          "roll_gzip": false,
          "roll_keep": 5,
          "roll_local_time": true,
          "roll_size_mb": 10
        }
      },
      "elm": {
        "include": ["http.log.access.elm"],
        "level": "DEBUG",
        "writer": {
          "filename": "/var/log/caddy/elm702.log",
          "output": "file",
          "roll_keep": 20,
          "roll_keep_days": 30,
          "roll_size_mb": 10
        }
      }
    }
  }
}

So the debug logging is happening, or at least appears to be.

Oh.

debug configures the logger default.

You have then limited that to include http.log.access, so none of the actual debug logs are being included.

For troubleshooting, consider removing/commenting out the extraneous logging configuration for now. Once we’ve actually got your setup working you can get the logging back to the way you like it.

1 Like

Ok, got some debug messages!

{
    "level": "debug",
    "ts": 1725884077.7147996,
    "logger": "events",
    "msg": "event",
    "name": "tls_get_certificate",
    "id": "326abf92-5e10-466b-9d51-66b7a6b22a0f",
    "origin": "tls",
    "data": {
        "client_hello": {
            "CipherSuites": [
                4866,
                4867,
                4865,
                49196,
                49200,
                159,
                52393,
                52392,
                52394,
                49195,
                49199,
                158,
                49188,
                49192,
                107,
                49187,
                49191,
                103,
                49162,
                49172,
                57,
                49161,
                49171,
                51,
                157,
                156,
                61,
                60,
                53,
                47,
                255
            ],
            "ServerName": "corp.baselinesinc.com",
            "SupportedCurves": [
                29,
                23,
                30,
                25,
                24,
                256,
                257,
                258,
                259,
                260
            ],
            "SupportedPoints": "AAEC",
            "SignatureSchemes": [
                1027,
                1283,
                1539,
                2055,
                2056,
                2057,
                2058,
                2059,
                2052,
                2053,
                2054,
                1025,
                1281,
                1537,
                771,
                769,
                770,
                1026,
                1282,
                1538
            ],
            "SupportedProtos": [
                "h2",
                "http/1.1"
            ],
            "SupportedVersions": [
                772,
                771
            ],
            "RemoteAddr": {
                "IP": "127.0.0.1",
                "Port": 56534,
                "Zone": ""
            },
            "LocalAddr": {
                "IP": "127.0.0.1",
                "Port": 9443,
                "Zone": ""
            }
        }
    }
}
{
    "level": "debug",
    "ts": 1725884077.71493,
    "logger": "tls.handshake",
    "msg": "choosing certificate",
    "identifier": "corp.baselinesinc.com",
    "num_choices": 1
}
{
    "level": "debug",
    "ts": 1725884077.7149947,
    "logger": "tls.handshake",
    "msg": "default certificate selection results",
    "identifier": "corp.baselinesinc.com",
    "subjects": [
        "corp.baselinesinc.com"
    ],
    "managed": true,
    "issuer_key": "acme-staging-v02.api.letsencrypt.org-directory",
    "hash": "8cb2bc5d7935f417dc5aa2695bd5e2b70327fccb23afc5475a272f64ded0e4a4"
}
{
    "level": "debug",
    "ts": 1725884077.7150307,
    "logger": "tls.handshake",
    "msg": "matched certificate in cache",
    "remote_ip": "127.0.0.1",
    "remote_port": "56534",
    "subjects": [
        "corp.baselinesinc.com"
    ],
    "managed": true,
    "expiration": 1733251869,
    "hash": "8cb2bc5d7935f417dc5aa2695bd5e2b70327fccb23afc5475a272f64ded0e4a4"
}
{
    "level": "debug",
    "ts": 1725884077.7259314,
    "logger": "http.handlers.reverse_proxy",
    "msg": "selected upstream",
    "dial": "ubuntuclm.local:9443",
    "total_upstreams": 1
}
{
    "level": "debug",
    "ts": 1725884077.7288885,
    "logger": "http.handlers.reverse_proxy",
    "msg": "upstream roundtrip",
    "upstream": "ubuntuclm.local:9443",
    "duration": 0.002772715,
    "request": {
        "remote_ip": "127.0.0.1",
        "remote_port": "56534",
        "client_ip": "127.0.0.1",
        "proto": "HTTP/2.0",
        "method": "GET",
        "host": "ubuntuclm.local:9443",
        "uri": "/jts/scr",
        "headers": {
            "X-Real-Ip": [
                "127.0.0.1:56534"
            ],
            "X-Forwarded-Port": [
                "{server_port}"
            ],
            "User-Agent": [
                "curl/8.5.0"
            ],
            "Accept": [
                "*/*"
            ],
            "X-Forwarded-For": [
                "127.0.0.1:56534"
            ],
            "X-Forwarded-Proto": [
                "https"
            ],
            "X-Forwarded-Host": [
                "corp.baselinesinc.com:9443"
            ]
        },
        "tls": {
            "resumed": false,
            "version": 772,
            "cipher_suite": 4867,
            "proto": "h2",
            "server_name": "corp.baselinesinc.com"
        }
    },
    "error": "dial tcp: lookup ubuntuclm.local on 127.0.0.53:53: server misbehaving"
}
{
    "level": "error",
    "ts": 1725884077.729073,
    "logger": "http.log.error",
    "msg": "dial tcp: lookup ubuntuclm.local on 127.0.0.53:53: server misbehaving",
    "request": {
        "remote_ip": "127.0.0.1",
        "remote_port": "56534",
        "client_ip": "127.0.0.1",
        "proto": "HTTP/2.0",
        "method": "GET",
        "host": "corp.baselinesinc.com:9443",
        "uri": "/jts/scr",
        "headers": {
            "User-Agent": [
                "curl/8.5.0"
            ],
            "Accept": [
                "*/*"
            ]
        },
        "tls": {
            "resumed": false,
            "version": 772,
            "cipher_suite": 4867,
            "proto": "h2",
            "server_name": "corp.baselinesinc.com"
        }
    },
    "duration": 0.003566767,
    "status": 502,
    "err_id": "p5mkvtt48",
    "err_trace": "reverseproxy.statusError (reverseproxy.go:1269)"
}

And here we start to get to the truth of the matter.

Why is it looking up ubuntuclm.local? I don’t see this in your config anywhere.

This implies you have two issues: rogue configuration, and a faulty DNS resolver.

1 Like

This is interesting.

ubuntuclm.local is my server that runs my application in docker on port 9443. So technically this is correct. I have not shared my sites-available except for this one config. I did try hosting Home Assistant (hass) on this same server, and that’s where the ubuntuclm.local is coming in from:

#hass caddy config
corp.baselinesinc.com:8123 {
        reverse_proxy /* https://ubuntuclm.local:8123 {
                transport http {
                        tls
                        tls_insecure_skip_verify
                }
        }
}

By the way – this same reverse proxy for hass also does not work for me – gives a similar 502, but I am not as interested in making it work.

Does this answer your question about why it’s looking up ubuntuclm.local, because I think it’s a red herring, and I can take away this config to help prove it.

I do have avahi installed with mdns…this was intended to make things easier. Should I remove as troubleshooting?

EDIT: I figured it out – I changed my application config to this whilst troubleshooting:

https://corp.baselinesinc.com:9443 {
        reverse_proxy ubuntuclm.local:9443 {
                transport http {
                        tls
                        tls_trust_pool file {
                                pem_file /etc/caddy/certs/elm71m10.pem
                        }
                        #compression off
                        tls_server_name localhost
                }
               header_up Host {upstream_hostport}
               header_up X-Real-IP {remote}
               header_up X-Forwarded-For {remote}
               header_up X-Forwarded-Port {server_port}
               header_up X-Forwarded-Proto {scheme}
        }
#       log elm {
#               output file /var/log/caddy/elm702.log {
#                       roll_size 10mb
#                       roll_keep 20
#                       roll_keep_for 720h
#               }
#       }
}

It’s the same IP and has been since this started:

root@caddy:/etc/caddy/sites-enabled# ping ubuntuclm.local
PING ubuntuclm.local (192.168.1.111) 56(84) bytes of data.
64 bytes from 192.168.1.111: icmp_seq=1 ttl=64 time=0.336 ms
64 bytes from 192.168.1.111: icmp_seq=2 ttl=64 time=0.434 ms

That’s definitely relevant information.

Either way, with the way you have it right now, as per the debug log, access to the site address corp.baselinesinc.com:9443 is currently producing a 502 as Caddy cannot resolve ubuntuclm.local due to a misbehaving DNS resolver at 127.0.0.53:53.

So the next step in resolving the issue might be to swap back to an IP upstream, or it might be to resolve the DNS resolution problem, or both.

1 Like

But in my original troubleshooting I had the site pointed to the IP – specifically to rule out DNS.

I understand why the resolver may be a problem, but what I don’t understand is why pointing directly at the IP wouldn’t bypass it? In other words, wouldn’t my first config pointing to 192.168.1.111 thus work?

So obviously. @Whitestrake even though I’m asking you questions I keep trying things.

I set it back to be the IP instead of the .local hostname in the site config and it just started working.

This is very odd to me but I’m happy it’s working. I never explicitly set DNS, and between Docker and Avahi/mdns it’s certainly interesting that the hostname url is ‘wrong’ to caddy but when I do a ping it resolves to 192.168.xxx.xxx like I expect.

I admittedly do not know as much about DNS, but you’ve definitely helped me get this far and I am thankful for the troubleshooting knowledge you’ve shared with me.

1 Like

But in my original troubleshooting I had the site pointed to the IP – specifically to rule out DNS.

We don’t have the debug logs from your original troubleshooting, unfortunately.

We need those debug logs. Currently the ones you’ve posted are blocked by the DNS issue. You need to fix that issue and then get fresh debug logs.

Ahhh, that’s almost - almost - unfortunate. I’d have been very curious to see what the actual cause of the issue was. But it’s hard to turn down a win! Hopefully everything keeps working out.

1 Like