Unable to proxy with NGINX properly

I am having issues proxying my production server of Galaxy. I have set up NGINX to proxy as described in the admin documentation and can access galaxy via the proxy however, it shows up as plain text in the web browser without any graphics(see attached image). I can click on links and navigate through Galaxy, but it’s difficult to do anything. Any help would be greatly appreciated.

Do you have this part in your config?

        # serve framework static content
    location blue {
        alias $galaxy_root/static/style/;
        expires 24h;
    }
    location static {
        alias $galaxy_root/static;
        expires 24h;
    }
    location robots.txt {
        alias $galaxy_root/static/;
        expires 24h;
    }
    location favicon.ico {
        alias $galaxy_root/static/;
        expires 24h;
    }

And do you have set the right location for $galaxy_root

1 Like

That did it! Thank you for the help. I used the defaults in the setup doc, which didn’t have the location blue or the correct aliases for the other 3. Thanks again!