server {
    listen 80;
    server_name 0.0.0.0;

    location = /favicon.ico {
        access_log off;
        log_not_found off;
    }

    location /static/ {
        root /home/ubuntu/gptbusiness/chatapp_main;
    }

    location / {
        include proxy_params;
        proxy_pass http://0.0.0.0:8000;
        proxy_http_version 1.1;
    }
}