Error while install SSL

Scroll upward, what does it say above "change nameservers"?

2 Likes

yes,

Ok, this looks fine to me.

Now go to the vultr DNS management.

Disable DNSSEC there.

When you reenable it, you have to set what vultr tells you in the hostinger page you showed above, in the DNSSEC section. -- do not screenshot your DNSSEC keys. :smiley:

3 Likes

That's the VPS controls. You need the DNS controls.

I don't know vultr enough to tell you where it is.

1 Like

Okay done - Disable DNSSEC

I think you do. Check if that service is free or paid, before. If it's paid, you should switch back to using hostingers dns.

1 Like

i don't see any option to check that.

Now how i can install the SSL ?

It looks like it's free: Introduction to Vultr DNS - Vultr.com

1 Like

No, wait. Did you reenable dnssec?

It's not mandatory but it is strongly advised. Vultr should tell you what to add in hostinger's panel when you do.

2 Likes

now dnssec enabled

Ok.

I see an A record (67.219.101.168) and no AAAA record. Does this match your vultr dns dashboard?

1 Like

yes, it's fine

You should check that your website works over http (no encryption) and if it does, you can follow the instructions for certbot on certbot.eff.org

1 Like

I see nginx there:

curl -Ii 67.219.101.168
HTTP/1.1 200 OK
Server: nginx
Date: Sun, 06 Mar 2022 11:40:22 GMT
Content-Type: text/html; charset=UTF-8
Connection: keep-alive
Vary: Accept-Encoding
Expires: Wed, 11 Jan 1984 05:00:00 GMT
Cache-Control: no-cache, must-revalidate, max-age=0
2 Likes

Yup, looks like nginx.

$ nmap -A -p80 webviewdigital.com
Starting Nmap 7.80 ( https://nmap.org ) at 2022-03-06 12:41 CET
Nmap scan report for webviewdigital.com (67.219.101.168)
Host is up (0.26s latency).
rDNS record for 67.219.101.168: 67.219.101.168.vultr.com

PORT   STATE SERVICE VERSION
80/tcp open  http    nginx
|_http-title: Site doesn't have a title (text/html; charset=UTF-8).

Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 41.83 seconds
1 Like

Not able to find any commend on https://certbot.eff.org

Choose "NGINX" on left choice and your Operating System on right choice.

2 Likes

Also...
This is concerning:
image

4 Likes

The concerning message above tells you to use apt, so it's safe to assume it's either debian or ubuntu.

  • lsb_release -a should tell you the version of ubuntu you're running; or
  • cat /etc/debian_version will tell you the debian version you're running.

For example:

~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu Jammy Jellyfish (development branch)
Release:        22.04
Codename:       jammy
# cat /etc/debian_version
10.11
1 Like