Check if there is a typo in _

Hello,

I am relatively new to Nextcloud and trying to get it going on my FreeNAS 11.3 instance. I have followed the instructions from this page (FreeNAS: Nextcloud Install with SSL Access – digiMoot:) and have finished everything up to the “External Access” section.

As of now, when I try to navigate to my Nextcloud jail, I get an error in the browser with the following:

“This site can’t be reached. Check if there is a typo in _. DNS_PROBE_FINISHED_NXDOMAIN”

I am trying to figure out how to resolve this issue, as I followed the steps provided in order to implement SSL connections. I am not wanting to enable external access and am merely trying to use Nextcloud on my internal network.

Any help you might be able to provide would be much appreciated.

Thank you!

What that means that there is a DNS error.

In this case you can skip the SSL setup and connect over http.
Just open your browser and point it to the NC server IP address…

Any thoughts on how I could resolve the issue to continue to use SSL? I am thinking it is something with the nginx.config file (modified portion copied below)

server {
  listen 80;
  listen [::]:80;
  server_name _;
  return 301 https://$server_name$request_uri;
}