Right now I'm trying this in my .conf file. None of the pictures are showing up if I do this.
location ~* \.(jpg|jpeg|png|gif|ico)$ {
expires 365d;
}
location ~* \.(pdf)$ {
expires 30d;
}
I've already looked at this question (https://stackoverflow.com/a/18039576/582309) on SO and it doesn't address the problem I'm having using MUP.
I've also tried to include the root path to the build directory that MUP is creating, but that doesn't work either. Also, I removed the CSS and JS from the cache here because the pages doesn't load if those don't work and I wasn't sure if Meteor was already taking care of caching of these files.
location ~* \.(jpg|jpeg|png|gif|ico)$ {
root /opt/give/app/programs/web.browser; //tried many combinations of the path
expires 365d;
}
location ~* \.(pdf)$ {
expires 30d;
}
Here is a GIST of the rest of the .conf file
Sites.conf GIST
https://gist.github.com/c316/9552ecdc8107334fc55d
location specific gist
Turns out that to cache my images fonts and other public assets all I really needed to do it this.
Already had this top portion
Checkout this article
http://nginx.com/blog/nginx-nodejs-websockets-socketio/
Scroll down to "What about Static Files?"