I installed N8N on a Digital Ocean VPS, but it keeps giving an HTTPS connection error. I tried to renew the SSL, and the following error occurred:
Attempting to renew cert (automasys.wvsdigital.online) from /etc/letsencrypt/renewal/automasys.wvsdigital.online.conf produced an unexpected error: Missing command line flag or config entry for this setting: Input the webroot for automasys.wvsdigital.online:. Skipping.
All renewal attempts failed. The following certs could not be renewed: /etc/letsencrypt/live/automasys.wvsdigital.online/fullchain.pem (failure)
My NGINX has the following configuration for the reverse proxy:
Assi está o proxy reverso server { server_name automasys.wvsdigital.online; location / { proxy_pass http://127.0.0.1:5678; proxy_set_header Connection ‘’; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection ‘upgrade’; proxy_cache_bypass $http_upgrade; chunked_transfer_encoding off; proxy_buffering off; proxy_cache off; } }
