1. Intro
  2. Check-in round
  3. Milestone 2: DNO (Dando Node Operator) funding - 50.000 ADA
    1. Demo of http://dandelion.m2tec.nl governance site.
    2. Discussing database schema to record DNO uptime.
  4. Milestone 4:
    1. Blockfrost Icebreaker (Roberto)

      1. https://blog.blockfrost.io/icebreakers/
      2. register for icebreaker rewards https://x.com/blockfrost_io/status/1897017381760946293
    2. Connecting to Unimatrix issue with

      1. Adding the following to your nginx proxy settings will fix the issue.
      server {
      	server_name preprod-sunflower.m2tec.nl;
      	access_log  /var/log/nginx/preprod-sunflower.m2tec.nl.access.log;
      	error_log   /var/log/nginx/preprod-sunflower.m2tec.nl.error.log;
      	
      	listen 443 ssl; # managed by Certbot
      	ssl_certificate /etc/letsencrypt/live/m2tec.nl/fullchain.pem; # managed by Certbot
      	ssl_certificate_key /etc/letsencrypt/live/m2tec.nl/privkey.pem; # managed by Certbot
      	include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
      	ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
      	
      	location / {
      	    proxy_http_version 1.1;   
      	    proxy_set_header Upgrade $http_upgrade;
      	    proxy_set_header Connection "Upgrade";
      	
      	    proxy_pass  <http://127.0.0.1:3081>;
      	}
      }
      
    3. Setting up ssl certificate with treafic https://traefik.io/traefik/ https://doc.traefik.io/traefik/user-guides/docker-compose/acme-http/