Setting up Ghost

Hello World.

I just set up Ghost for blogging and the first issue I ran into was not being able to upload my theme file:

The file you uploaded was larger than the maximum file size your server allows.

It turns out the default file upload size for nginx is 1 MB.  To get around it, just update the configuration and add this line in the server config.

client_max_body_size 5M;

See here for more info.