Cant generate or renew ssl certificates (Invalid response from .well-known/acme-challenge/)

Does anything show up in the access or error logs for that server block?

        access_log /var/log/nginx/test-company-v1-domain-access.log;
        error_log /var/log/nginx/test-company-v1-error.log;

Also, can you show what is in this file

       /etc/nginx/git-block.conf;
4 Likes

Also, you could try adding these two lines in the test-company-v1 server block. I see you had it this way for a different domain server block. I know the default is for listen 80; but server blocks should really be consistent. Although it did not look like that one was working either so maybe just review all your port 80 listen clauses and make sure each server block is the same.

It will be more interesting to know about the two logs I asked about in previous post. Thanks

    listen 80;
    listen [::]:80;
3 Likes

It may be helpful to see the entire nginx config.
Show output of:
nginx -T

3 Likes

nginx_T.txt (503.7 KB)

[domain_access_log.t
domain_error_log.txt (23.0 KB)
xt|attachment](upload://11bE4FicejMaFj482T06C6phsUK.txt) (39.9 KB)

git-block.conf

   		deny all;
		access_log off;
       		log_not_found off;
	}```

domain_access_log.txt (39.9 KB)

There is no listen statement:

server {
       server_name test-company-v1.hiration.com;
        root /home/ubuntu/b2b_deployment;
        index /home/ubuntu/b2b_deployment/test-company-v1.html;
        access_log /var/log/nginx/test-company-v1-domain-access.log;
        error_log /var/log/nginx/test-company-v1-error.log;
       location / {
               try_files $uri $uri/ /test-company-v1.html;
                #try_files $uri $uri/ =404;
       }
       include /etc/nginx/git-block.conf;

}

Add:
listen 80;

3 Likes

after adding listen 80; still same issue

Saving debug log to /var/log/letsencrypt/letsencrypt.log
Requesting a certificate for test-company-v1.hiration.com

Certbot failed to authenticate some domains (authenticator: nginx). The Certificate Authority reported these problems:
Domain: test-company-v1.hiration.com
Type: unauthorized
Detail: 3.101.63.44: Invalid response from Online Resume Builder: Create Resume within minutes "\n <script src="https://kit.fontawesome.com/4b1f44125a.js\" crossorigin="anonymous">\n <meta charset="utf-"

Hint: The Certificate Authority failed to verify the temporary nginx configuration changes made by Certbot. Ensure the listed domains point to this nginx server and that it is accessible from the internet.

Well, we now know from the error log why the request is failing. But, after reviewing your full nginx -T I don't see why this happens.

See the error log entry below. Note the /.well-known/acme-challenge/ path is repeated for the filename even though the request URI has that value only once. So, of course the data is not found in that location.

Do you have any idea why the path is repeated? An nginx alias statement could do that but I don't see one in your config. Do you have any kind of symlink or similar in your filesystem for that path?

Your try_files is such that it does not send a 404 when the file is not found. Instead, it outputs your friendly home page with a status 200. This is why you see the info about "script and kit-fontawesome" in the error response from Certbot.

2023/09/21 17:54:33 [error] 3210#3210: *908 open() "/home/ubuntu/b2b_deployment/.well-known/acme-challenge/.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc:" failed (2: No such file or directory), client: 17.58.58.23, server: test-company-v1.hiration.com, request: "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1", host: "test-company-v1.hiration.com"

4 Likes

This is one of the strangest nginx problems I've seen. Your nginx config is large but very clean.

My previous post explains why the webroot test failed or anyone just trying that format of URI like Let's Debug or manually. But, that doesn't explain why the --nginx plug-in would have failed originally.

Can you try these two four commands and then show the access and error log entries that match just to these tests? The --dry-run will not affect any of your production certs.

sudo certbot certonly --nginx -d test-company-v1.hiration.com --dry-run --nginx-sleep-seconds 10

sudo certbot certonly --webroot -w /home/ubuntu/b2b_deployment -d test-company-v1.hiration.com --dry-run 

Also this domain 
sudo certbot certonly --nginx -d snhu.hiration.com --dry-run --nginx-sleep-seconds 10

sudo certbot certonly --webroot -w /home/ubuntu/b2b_deployment -d snhu.hiration.com --dry-run 

4 Likes

sudo certbot certonly --nginx -d test-company-v1.hiration.com --dry-run --nginx-sleep-seconds 10
output ---Saving debug log to /var/log/letsencrypt/letsencrypt.log
Simulating a certificate request for test-company-v1.hiration.com

Certbot failed to authenticate some domains (authenticator: nginx). The Certificate Authority reported these problems:
Domain: test-company-v1.hiration.com
Type: unauthorized
Detail: 3.101.63.44: Invalid response from Online Resume Builder: Create Resume within minutes "\n <script src="https://kit.fontawesome.com/4b1f44125a.js\" crossorigin="anonymous">\n <meta charset="utf-"

Hint: The Certificate Authority failed to verify the temporary nginx configuration changes made by Certbot. Ensure the listed domains point to this nginx server and that it is accessible from the internet.

sudo certbot certonly --webroot -w /home/ubuntu/b2b_deployment -d test-company-v1.hiration.com --dry-run
output --- Saving debug log to /var/log/letsencrypt/letsencrypt.log

Simulating a certificate request for test-company-v1.hiration.com

The dry run was successful.

sudo certbot certonly --nginx -d snhu.hiration.com --dry-run --nginx-sleep-seconds 10

output ---n RSA certificate named snhu.hiration.com already exists. Do you want to update
its key type to ECDSA?


(U)pdate key type/(K)eep existing key type: K
Simulating renewal of an existing certificate for snhu.hiration.com

Certbot failed to authenticate some domains (authenticator: nginx). The Certificate Authority reported these problems:
Domain: snhu.hiration.com
Type: unauthorized
Detail: 3.101.63.44: Invalid response from Online Resume Builder: Create Resume within minutes "\n <script src="https://kit.fontawesome.com/4b1f44125a.js\" crossorigin="anonymous">\n <meta charset="utf-"

Hint: The Certificate Authority failed to verify the temporary nginx configuration changes made by Certbot. Ensure the listed domains point to this nginx server and that it is accessible from the internet.

Some challenges have failed.
Ask for help or search for solutions at https://community.letsencrypt.org. See the logfile /var/log/letsencrypt/letsencrypt.log or re-run Certbot with -v for more details.

sudo certbot certonly --webroot -w /home/ubuntu/b2b_deployment -d snhu.hiration.com --dry-run

output - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

An RSA certificate named snhu.hiration.com already exists. Do you want to update

its key type to ECDSA?


(U)pdate key type/(K)eep existing key type: K

Simulating renewal of an existing certificate for snhu.hiration.com

The dry run was successful.

1 Like

error-log test-company-v1

2023/09/22 13:41:40 [error] 7710#7710: *640 access forbidden by rule, client: 128.199.195.68, server: test-company-v1.hiration.com, request: "GET /.git/config HTTP/1.1", host: "test-company-v1.hiration.com"
error-log snhu

2023/09/22 13:42:45 [error] 7710#7710: *667 access forbidden by rule, client: 91.213.50.8, server: snhu.hiration.com, request: "GET /.git/config HTTP/1.1", host: "snhu.hiration.com"

2023/09/22 13:43:09 [error] 7710#7710: *671 access forbidden by rule, client: 91.213.50.8, server: snhu.hiration.com, request: "GET /.git/config HTTP/1.1", host: "snhu.hiration.com"

access-log test -company- v1
128.199.195.68 - - [22/Sep/2023:13:41:37 +0000] "GET /.vscode/sftp.json HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"

128.199.195.68 - - [22/Sep/2023:13:41:37 +0000] "GET /about HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"

128.199.195.68 - - [22/Sep/2023:13:41:37 +0000] "GET /debug/default/view?panel=config HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"

128.199.195.68 - - [22/Sep/2023:13:41:38 +0000] "GET /v2/_catalog HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"

128.199.195.68 - - [22/Sep/2023:13:41:38 +0000] "GET /ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"

128.199.195.68 - - [22/Sep/2023:13:41:38 +0000] "GET /server-status HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"

128.199.195.68 - - [22/Sep/2023:13:41:39 +0000] "GET /login.action HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"

128.199.195.68 - - [22/Sep/2023:13:41:39 +0000] "GET /_all_dbs HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (l9scan/2.0.4343e23363e2130313e233; +https://leakix.net)"

128.199.195.68 - - [22/Sep/2023:13:41:40 +0000] "GET /.DS_Store HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"

128.199.195.68 - - [22/Sep/2023:13:41:40 +0000] "GET /.env HTTP/1.1" 200 14 "-" "Go-http-client/1.1"

128.199.195.68 - - [22/Sep/2023:13:41:41 +0000] "GET /s/4343e23363e2130313e233/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"

128.199.195.68 - - [22/Sep/2023:13:41:41 +0000] "GET /config.json HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"

128.199.195.68 - - [22/Sep/2023:13:41:41 +0000] "GET /telescope/requests HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"

128.199.195.68 - - [22/Sep/2023:13:41:42 +0000] "GET /?rest_route=/wp/v2/users/ HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"

195.74.76.198 - - [22/Sep/2023:13:41:51 +0000] "HEAD / HTTP/1.1" 200 0 "-" "Go-http-client/1.1"

184.105.99.36 - - [22/Sep/2023:13:42:02 +0000] "GET /.well-known/acme-challenge/X1mf60PhykOimdL4qj7Z-sI8c3HcFl8PfmBDfmT3-rs: HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15"

184.105.99.36 - - [22/Sep/2023:13:43:54 +0000] "GET / HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15

domain acess log snhu
72.234.49.237 - - [22/Sep/2023:06:37:04 +0000] "HEAD / HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36"

172.234.49.237 - - [22/Sep/2023:06:37:40 +0000] "HEAD / HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36"

34.209.26.80 - - [22/Sep/2023:13:41:02 +0000] "GET /.well-known/acme-challenge/Xjwbe3Eme0dpEGULJhR3nDdY76CverBXM5zaJyq1MyU HTTP/1.1" 200 2335 "Online Resume Builder: Create Resume within minutes" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"

18.217.44.133 - - [22/Sep/2023:13:41:02 +0000] "GET /.well-known/acme-challenge/Xjwbe3Eme0dpEGULJhR3nDdY76CverBXM5zaJyq1MyU HTTP/1.1" 200 2335 "Online Resume Builder: Create Resume within minutes" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"

23.178.112.106 - - [22/Sep/2023:13:41:02 +0000] "GET /.well-known/acme-challenge/Xjwbe3Eme0dpEGULJhR3nDdY76CverBXM5zaJyq1MyU HTTP/1.1" 200 2335 "Online Resume Builder: Create Resume within minutes" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"

34.209.26.80 - - [22/Sep/2023:13:41:27 +0000] "GET /.well-known/acme-challenge/J0jHi7pfqRXeQkXu5TXh-WT_Qw5KKOEBWQCHjVxlZKs HTTP/1.1" 200 87 "Online Resume Builder: Create Resume within minutes" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"

18.217.44.133 - - [22/Sep/2023:13:41:28 +0000] "GET /.well-known/acme-challenge/J0jHi7pfqRXeQkXu5TXh-WT_Qw5KKOEBWQCHjVxlZKs HTTP/1.1" 200 87 "Online Resume Builder: Create Resume within minutes" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"

23.178.112.106 - - [22/Sep/2023:13:41:28 +0000] "GET /.well-known/acme-challenge/J0jHi7pfqRXeQkXu5TXh-WT_Qw5KKOEBWQCHjVxlZKs HTTP/1.1" 200 87 "Online Resume Builder: Create Resume within minutes" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"

195.211.77.140 - - [22/Sep/2023:13:42:57 +0000] "HEAD / HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36"

195.211.77.142 - - [22/Sep/2023:13:43:11 +0000] "GET / HTTP/1.1" 200 2335 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36"

184.105.99.36 - - [22/Sep/2023:13:43:14 +0000] "GET /.well-known/acme-challenge/Xjwbe3Eme0dpEGULJhR3nDdY76CverBXM5zaJyq1MyU: HTTP/1.1" 200 2335 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15"

17.58.56.5 - - [22/Sep/2023:13:51:19 +0000] "GET /.well-known/acme-challenge/Xjwbe3Eme0dpEGULJhR3nDdY76CverBXM5zaJyq1MyU: HTTP/1.1" 200 2335 "-" "AppleNewsBot"

Okay, the --webroot success gives a path forward but your existing domain snhu is failing with --nginx too. Converting your many domains would be very time consuming.

I'd like to try to fix this. You got a cert for snhu about 9 days ago so something has gone wrong recently.

Can you show this file

/etc/letsencrypt/renewal/snhu.hiration.com.conf
3 Likes
# renew_before_expiry = 30 days
version = 0.31.0
archive_dir = /etc/letsencrypt/archive/snhu.hiration.com
cert = /etc/letsencrypt/live/snhu.hiration.com/cert.pem
privkey = /etc/letsencrypt/live/snhu.hiration.com/privkey.pem
chain = /etc/letsencrypt/live/snhu.hiration.com/chain.pem
fullchain = /etc/letsencrypt/live/snhu.hiration.com/fullchain.pem
# Options used in the renewal process
[renewalparams]
account = abb9cfed7c1ae43bf04643afc5be365d
renew_hook = systemctl reload nginx
authenticator = nginx
server = https://acme-v02.api.letsencrypt.org/directory
1 Like

yes i am successfully using this from lat 3 years and hasnt changed anything this whole process is automated but somehow it falls randomly from last 1-2 weeks . please help :dotted_line_face:

I am trying :slight_smile: This is a very strange result.

Is there anything about your nginx or certbot install that changed in the last 9 days?

Any new versions?

Also, the access-log for test-company-v1 did not have any entries for a /.well-known/acme-challenge.

But, the access log for snhu had 2 sets of 3 requests. Each HTTP challenge should show 3 of the same URI so that is normal. But, having two of them for snhu when only one of its tests worked is not right.

And, having none in test-company-v1 is wrong given the webroot test worked.

Could you have copy/pasted those logs wrong?

4 Likes

this is complete access log for test-company-v1 i have not pasted full earlier

17.58.59.4 - - [22/Sep/2023:06:31:45 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.59.6 - - [22/Sep/2023:06:31:59 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.59.5 - - [22/Sep/2023:06:31:59 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.59.7 - - [22/Sep/2023:06:31:59 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.59.5 - - [22/Sep/2023:06:31:59 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.59.5 - - [22/Sep/2023:06:32:56 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.59.7 - - [22/Sep/2023:06:32:56 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
103.237.118.179 - - [22/Sep/2023:06:50:29 +0000] "GET / HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36"
103.237.118.179 - - [22/Sep/2023:06:50:34 +0000] "GET /static/favicon.ico HTTP/1.1" 200 2328 "http://test-company-v1.hiration.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36"
103.237.118.179 - - [22/Sep/2023:06:50:39 +0000] "GET / HTTP/1.1" 304 0 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36"
103.237.118.179 - - [22/Sep/2023:06:51:26 +0000] "GET / HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36"
23.178.112.200 - - [22/Sep/2023:06:53:44 +0000] "GET /.well-known/acme-challenge/CgmHSId_Ny9OTXuNwQGqqpMrxrZIclOrsDim7nZOtEs HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
3.145.65.62 - - [22/Sep/2023:06:53:44 +0000] "GET /.well-known/acme-challenge/CgmHSId_Ny9OTXuNwQGqqpMrxrZIclOrsDim7nZOtEs HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
52.40.89.197 - - [22/Sep/2023:06:53:44 +0000] "GET /.well-known/acme-challenge/CgmHSId_Ny9OTXuNwQGqqpMrxrZIclOrsDim7nZOtEs HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
52.40.89.197 - - [22/Sep/2023:06:54:37 +0000] "GET /.well-known/acme-challenge/cJHP-1ZzaRTH9ziZor3hZ4351Bd18hNFStJ56MYEjgs HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
3.145.65.62 - - [22/Sep/2023:06:54:37 +0000] "GET /.well-known/acme-challenge/cJHP-1ZzaRTH9ziZor3hZ4351Bd18hNFStJ56MYEjgs HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
23.178.112.209 - - [22/Sep/2023:06:54:37 +0000] "GET /.well-known/acme-challenge/cJHP-1ZzaRTH9ziZor3hZ4351Bd18hNFStJ56MYEjgs HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
35.88.71.231 - - [22/Sep/2023:07:02:20 +0000] "GET /.well-known/acme-challenge/BlPBTW2oJxfkTg7KR9njNavn-zsLYB4hreDmhoFJzUI HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
18.222.24.83 - - [22/Sep/2023:07:02:20 +0000] "GET /.well-known/acme-challenge/BlPBTW2oJxfkTg7KR9njNavn-zsLYB4hreDmhoFJzUI HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
23.178.112.200 - - [22/Sep/2023:07:02:20 +0000] "GET /.well-known/acme-challenge/BlPBTW2oJxfkTg7KR9njNavn-zsLYB4hreDmhoFJzUI HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
17.58.57.6 - - [22/Sep/2023:07:53:12 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.57.7 - - [22/Sep/2023:07:53:48 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.57.7 - - [22/Sep/2023:07:53:48 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.57.7 - - [22/Sep/2023:07:53:48 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.57.5 - - [22/Sep/2023:07:53:48 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.57.21 - - [22/Sep/2023:07:54:01 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.57.21 - - [22/Sep/2023:07:54:01 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
185.98.156.190 - - [22/Sep/2023:10:31:06 +0000] "GET / HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Dlc/2.0.1"
185.98.156.190 - - [22/Sep/2023:10:31:07 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Dlc/2.0.1"
35.88.71.231 - - [22/Sep/2023:12:13:05 +0000] "GET /.well-known/acme-challenge/XWFeYuCe5vm9aM7_PFzzQKAzJdU9w3f-HGWDyInqWgM HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
3.145.65.62 - - [22/Sep/2023:12:13:06 +0000] "GET /.well-known/acme-challenge/XWFeYuCe5vm9aM7_PFzzQKAzJdU9w3f-HGWDyInqWgM HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
23.178.112.203 - - [22/Sep/2023:12:13:06 +0000] "GET /.well-known/acme-challenge/XWFeYuCe5vm9aM7_PFzzQKAzJdU9w3f-HGWDyInqWgM HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
35.88.71.231 - - [22/Sep/2023:12:14:47 +0000] "GET /.well-known/acme-challenge/9dZXOjp24snApMxzPFyfkLqnpd59Ds7wBFFik0YezuE HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
3.145.65.62 - - [22/Sep/2023:12:14:47 +0000] "GET /.well-known/acme-challenge/9dZXOjp24snApMxzPFyfkLqnpd59Ds7wBFFik0YezuE HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
23.178.112.201 - - [22/Sep/2023:12:14:47 +0000] "GET /.well-known/acme-challenge/9dZXOjp24snApMxzPFyfkLqnpd59Ds7wBFFik0YezuE HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
184.105.99.36 - - [22/Sep/2023:12:15:16 +0000] "GET /.well-known/acme-challenge/9dZXOjp24snApMxzPFyfkLqnpd59Ds7wBFFik0YezuE: HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15"
184.105.99.36 - - [22/Sep/2023:12:15:17 +0000] "GET /.well-known/acme-challenge/9dZXOjp24snApMxzPFyfkLqnpd59Ds7wBFFik0YezuE: HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15"
184.105.99.36 - - [22/Sep/2023:12:15:17 +0000] "GET / HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15"
17.58.58.5 - - [22/Sep/2023:12:15:53 +0000] "GET /.well-known/acme-challenge/9dZXOjp24snApMxzPFyfkLqnpd59Ds7wBFFik0YezuE: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.25 - - [22/Sep/2023:12:15:55 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.22 - - [22/Sep/2023:12:15:55 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.24 - - [22/Sep/2023:12:15:55 +0000] "GET /.well-known/acme-challenge/9dZXOjp24snApMxzPFyfkLqnpd59Ds7wBFFik0YezuE: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
54.225.45.13 - - [22/Sep/2023:12:16:38 +0000] "GET / HTTP/1.1" 200 2328 "-" "Slackbot-LinkExpanding 1.0 (+https://api.slack.com/robots)"
34.228.191.171 - - [22/Sep/2023:12:16:38 +0000] "GET /static/favicon.ico HTTP/1.1" 200 2328 "-" "Slackbot 1.0 (+https://api.slack.com/robots)"
52.91.64.253 - - [22/Sep/2023:12:16:38 +0000] "GET /favicon.ico HTTP/1.1" 200 2328 "-" "Slackbot 1.0 (+https://api.slack.com/robots)"
17.58.59.5 - - [22/Sep/2023:12:17:39 +0000] "GET /.well-known/acme-challenge/9dZXOjp24snApMxzPFyfkLqnpd59Ds7wBFFik0YezuE: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.59.20 - - [22/Sep/2023:12:17:40 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.59.20 - - [22/Sep/2023:12:17:40 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.59.20 - - [22/Sep/2023:12:17:40 +0000] "GET /.well-known/acme-challenge/9dZXOjp24snApMxzPFyfkLqnpd59Ds7wBFFik0YezuE: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
5.255.231.93 - - [22/Sep/2023:12:17:58 +0000] "GET /robots.txt HTTP/1.1" 200 4701 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)"
87.250.224.15 - - [22/Sep/2023:12:17:58 +0000] "GET /.well-known/acme-challenge/9dZXOjp24snApMxzPFyfkLqnpd59Ds7wBFFik0YezuE: HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)"
17.58.57.104 - - [22/Sep/2023:12:22:20 +0000] "GET /.well-known/acme-challenge/9dZXOjp24snApMxzPFyfkLqnpd59Ds7wBFFik0YezuE: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.57.21 - - [22/Sep/2023:12:22:22 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.57.21 - - [22/Sep/2023:12:22:22 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.62.4 - - [22/Sep/2023:12:22:22 +0000] "GET /.well-known/acme-challenge/9dZXOjp24snApMxzPFyfkLqnpd59Ds7wBFFik0YezuE: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.57.103 - - [22/Sep/2023:12:26:54 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.4 - - [22/Sep/2023:12:27:55 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.23 - - [22/Sep/2023:12:40:02 +0000] "GET /.well-known/acme-challenge/9dZXOjp24snApMxzPFyfkLqnpd59Ds7wBFFik0YezuE: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.25 - - [22/Sep/2023:12:40:26 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.24 - - [22/Sep/2023:12:40:27 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.20 - - [22/Sep/2023:12:40:27 +0000] "GET /.well-known/acme-challenge/9dZXOjp24snApMxzPFyfkLqnpd59Ds7wBFFik0YezuE: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
34.205.33.192 - - [22/Sep/2023:12:43:03 +0000] "HEAD / HTTP/1.1" 200 0 "-" "curl/7.81.0"
34.205.33.192 - - [22/Sep/2023:12:43:07 +0000] "GET / HTTP/1.1" 200 4701 "-" "curl/7.81.0"
17.58.58.23 - - [22/Sep/2023:12:43:13 +0000] "GET /.well-known/acme-challenge/9dZXOjp24snApMxzPFyfkLqnpd59Ds7wBFFik0YezuE: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.22 - - [22/Sep/2023:12:43:17 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.20 - - [22/Sep/2023:12:43:19 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.22 - - [22/Sep/2023:12:43:19 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.20 - - [22/Sep/2023:12:43:20 +0000] "GET /.well-known/acme-challenge/9dZXOjp24snApMxzPFyfkLqnpd59Ds7wBFFik0YezuE: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
34.205.33.192 - - [22/Sep/2023:12:44:23 +0000] "GET /TestNotFound HTTP/1.1" 200 4701 "-" "curl/7.81.0"
184.105.99.36 - - [22/Sep/2023:12:54:10 +0000] "GET / HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15"
17.58.59.6 - - [22/Sep/2023:12:55:14 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.59.5 - - [22/Sep/2023:12:55:14 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.59.7 - - [22/Sep/2023:12:55:30 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.59.20 - - [22/Sep/2023:12:55:31 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.59.22 - - [22/Sep/2023:12:55:31 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.9 - - [22/Sep/2023:13:04:23 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
95.108.213.107 - - [22/Sep/2023:13:06:17 +0000] "GET /robots.txt HTTP/1.1" 200 4701 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)"
95.108.213.99 - - [22/Sep/2023:13:06:18 +0000] "GET / HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)"
17.58.58.5 - - [22/Sep/2023:13:09:29 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.7 - - [22/Sep/2023:13:09:29 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.62.20 - - [22/Sep/2023:13:12:14 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.57.20 - - [22/Sep/2023:13:12:14 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.62.20 - - [22/Sep/2023:13:12:28 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.57.7 - - [22/Sep/2023:13:12:29 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.57.4 - - [22/Sep/2023:13:12:29 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
172.104.24.29 - - [22/Sep/2023:13:14:24 +0000] "GET /.well-known/acme-challenge/letsdebug-test HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Debug emulating Let's Encrypt validation server; +https://letsdebug.net)"
34.209.26.80 - - [22/Sep/2023:13:14:25 +0000] "GET /.well-known/acme-challenge/EmyNn7gcfYyQ6APgu_lo6QmefpKg3fszo_DIbWsWhXw HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
23.178.112.106 - - [22/Sep/2023:13:14:25 +0000] "GET /.well-known/acme-challenge/EmyNn7gcfYyQ6APgu_lo6QmefpKg3fszo_DIbWsWhXw HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
18.217.44.133 - - [22/Sep/2023:13:14:25 +0000] "GET /.well-known/acme-challenge/EmyNn7gcfYyQ6APgu_lo6QmefpKg3fszo_DIbWsWhXw HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
17.58.58.6 - - [22/Sep/2023:13:14:36 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.8 - - [22/Sep/2023:13:14:46 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.5 - - [22/Sep/2023:13:14:46 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.4 - - [22/Sep/2023:13:15:11 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.9 - - [22/Sep/2023:13:15:11 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.22 - - [22/Sep/2023:13:15:14 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.22 - - [22/Sep/2023:13:15:16 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.20 - - [22/Sep/2023:13:15:16 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.21 - - [22/Sep/2023:13:15:36 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.22 - - [22/Sep/2023:13:15:38 +0000] "GET / HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.58.20 - - [22/Sep/2023:13:15:38 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
34.209.26.80 - - [22/Sep/2023:13:21:02 +0000] "GET /.well-known/acme-challenge/W6ILj4HzjfdF_RA5Yu9tSWtzJ5p44WDVH857mqtlLXo HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
66.133.109.36 - - [22/Sep/2023:13:21:03 +0000] "GET /.well-known/acme-challenge/W6ILj4HzjfdF_RA5Yu9tSWtzJ5p44WDVH857mqtlLXo HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
18.217.44.133 - - [22/Sep/2023:13:21:03 +0000] "GET /.well-known/acme-challenge/W6ILj4HzjfdF_RA5Yu9tSWtzJ5p44WDVH857mqtlLXo HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
34.209.26.80 - - [22/Sep/2023:13:21:44 +0000] "GET /.well-known/acme-challenge/WE6XMuTksqii7vyR3THgK8U3ZnuIVpobYT12Ita-t-M HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
18.217.44.133 - - [22/Sep/2023:13:21:44 +0000] "GET /.well-known/acme-challenge/WE6XMuTksqii7vyR3THgK8U3ZnuIVpobYT12Ita-t-M HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
23.178.112.106 - - [22/Sep/2023:13:21:44 +0000] "GET /.well-known/acme-challenge/WE6XMuTksqii7vyR3THgK8U3ZnuIVpobYT12Ita-t-M HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
17.58.58.23 - - [22/Sep/2023:13:23:50 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
17.58.59.5 - - [22/Sep/2023:13:34:20 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
34.209.26.80 - - [22/Sep/2023:13:39:15 +0000] "GET /.well-known/acme-challenge/_jGj7DtO-pGtZmIaBU4APYbceb62u6m1D6ZdZUDV6_A HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
23.178.112.106 - - [22/Sep/2023:13:39:15 +0000] "GET /.well-known/acme-challenge/_jGj7DtO-pGtZmIaBU4APYbceb62u6m1D6ZdZUDV6_A HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
18.217.44.133 - - [22/Sep/2023:13:39:15 +0000] "GET /.well-known/acme-challenge/_jGj7DtO-pGtZmIaBU4APYbceb62u6m1D6ZdZUDV6_A HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
34.209.26.80 - - [22/Sep/2023:13:39:46 +0000] "GET /.well-known/acme-challenge/X1mf60PhykOimdL4qj7Z-sI8c3HcFl8PfmBDfmT3-rs HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
18.217.44.133 - - [22/Sep/2023:13:39:46 +0000] "GET /.well-known/acme-challenge/X1mf60PhykOimdL4qj7Z-sI8c3HcFl8PfmBDfmT3-rs HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
23.178.112.106 - - [22/Sep/2023:13:39:46 +0000] "GET /.well-known/acme-challenge/X1mf60PhykOimdL4qj7Z-sI8c3HcFl8PfmBDfmT3-rs HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
34.209.26.80 - - [22/Sep/2023:13:40:06 +0000] "GET /.well-known/acme-challenge/VPoVcgMAyTH9rG1ptUqAofjRFipkQMojyaRnAEB7WG0 HTTP/1.1" 200 87 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
18.217.44.133 - - [22/Sep/2023:13:40:06 +0000] "GET /.well-known/acme-challenge/VPoVcgMAyTH9rG1ptUqAofjRFipkQMojyaRnAEB7WG0 HTTP/1.1" 200 87 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
66.133.109.36 - - [22/Sep/2023:13:40:06 +0000] "GET /.well-known/acme-challenge/VPoVcgMAyTH9rG1ptUqAofjRFipkQMojyaRnAEB7WG0 HTTP/1.1" 200 87 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"
17.58.58.22 - - [22/Sep/2023:13:41:22 +0000] "GET /.well-known/acme-challenge/1NZ9H98BFP-Z-DnIKBBPYwKNQvQKUoye50CLC2KQKvc: HTTP/1.1" 200 2328 "-" "AppleNewsBot"
128.199.195.68 - - [22/Sep/2023:13:41:36 +0000] "GET / HTTP/1.1" 200 4701 "-" "-"
128.199.195.68 - - [22/Sep/2023:13:41:36 +0000] "GET / HTTP/1.1" 200 4701 "-" "Mozilla/5.0 (Linux; Android 6.0; HTC One M9 Build/MRA0390) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.5697.98 Mobile Safari/537.3"
128.199.195.68 - - [22/Sep/2023:13:41:37 +0000] "GET /.vscode/sftp.json HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"
128.199.195.68 - - [22/Sep/2023:13:41:37 +0000] "GET /about HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"
128.199.195.68 - - [22/Sep/2023:13:41:37 +0000] "GET /debug/default/view?panel=config HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"
128.199.195.68 - - [22/Sep/2023:13:41:38 +0000] "GET /v2/_catalog HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"
128.199.195.68 - - [22/Sep/2023:13:41:38 +0000] "GET /ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"
128.199.195.68 - - [22/Sep/2023:13:41:38 +0000] "GET /server-status HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"
128.199.195.68 - - [22/Sep/2023:13:41:39 +0000] "GET /login.action HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"
128.199.195.68 - - [22/Sep/2023:13:41:39 +0000] "GET /_all_dbs HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (l9scan/2.0.4343e23363e2130313e233; +https://leakix.net)"
128.199.195.68 - - [22/Sep/2023:13:41:40 +0000] "GET /.DS_Store HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"
128.199.195.68 - - [22/Sep/2023:13:41:40 +0000] "GET /.env HTTP/1.1" 200 14 "-" "Go-http-client/1.1"
128.199.195.68 - - [22/Sep/2023:13:41:41 +0000] "GET /s/4343e23363e2130313e233/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"
128.199.195.68 - - [22/Sep/2023:13:41:41 +0000] "GET /config.json HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"
128.199.195.68 - - [22/Sep/2023:13:41:41 +0000] "GET /telescope/requests HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"
128.199.195.68 - - [22/Sep/2023:13:41:42 +0000] "GET /?rest_route=/wp/v2/users/ HTTP/1.1" 200 2328 "-" "Go-http-client/1.1"
195.74.76.198 - - [22/Sep/2023:13:41:51 +0000] "HEAD / HTTP/1.1" 200 0 "-" "Go-http-client/1.1"
184.105.99.36 - - [22/Sep/2023:13:42:02 +0000] "GET /.well-known/acme-challenge/X1mf60PhykOimdL4qj7Z-sI8c3HcFl8PfmBDfmT3-rs: HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15"
184.105.99.36 - - [22/Sep/2023:13:43:54 +0000] "GET / HTTP/1.1" 200 2328 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15"

no i haven't changed anything but when i started to get this error i have updated my certbot version from 0.30.0 to certbot 2.6.0

1 Like

Just so I understand ... Did you have a problem using Certbot 0.30 and even after upgrading to 2.6 you still have the problem?

Or, did the problem only begin after you installed 2.6?

AND,
Do you have these same problems on your other server such as for hiration.com?
hiration.com. 66 IN A 35.160.90.82

3 Likes

No problem was there in 0.30 so i thought of updating certbot & problem persists after it.

1 Like