Mirror1.nethserver.org has "no time" status

I checked http://mirror-status.nethserver.org/ and found that http://mirror1.nethserver.org/nethserver redirects to an https error page.

3 Likes

Indeed the certificate is not valid because it doesn’t contain mirror1.nethserver.org :thinking:
@davidep could you please take a look?

2 Likes

Thank you for reporting it @mrmarkuz. There were multiple issues to solve, the most interesting one follows.

  • Yesterday I upgraded the EPEL Nginx package from 1.16 to 1.20
  • The upgrade changed this section of /etc/nginx.conf:
     server {
-        listen       80 default_server;
-        listen       [::]:80 default_server;
+        listen       80;
+        listen       [::]:80;
         server_name  _;
         root         /usr/share/nginx/html;

The rest of the service configuration relies on the “default_server” directive and :boom:

Should be fixed now.

3 Likes