Gradio behind nginx CSS issues

Hey everyone, have a setup where Gradio is hosted behind an nginx route and for some reason the CSS and formatting isn’t coming through. Looks like this:

My relevant nginx config is pretty straight forward:
location /gradio/ {
proxy_pass http://127.0.0.1:7860/;

    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    proxy_redirect off;

    auth_basic "Restricted Content";
    auth_basic_user_file /etc/apache2/.htpasswd;
}

I have access to the port through an SSH tunnel and that is working fine.

Anyone run in to something like this? Thank you :slightly_smiling_face:

Sorry, it’s an issue we are aware of and we’re working on it!