To fix these errors, please make sure that your domain name was
entered correctly and the DNS A/AAAA record(s) for that domain
contain(s) the right IP address.
server {
listen 80;
server_name example.com www.example.com;
location = /favicon.ico { access_log off; log_not_found off; }
location /static/ {
root /home/user/example;
}
location /.well-known {
alias /var/www/example/.well-known;
}
location / {
include proxy_params;
proxy_pass http://unix:/run/gunicorn.sock;
}
}