Skip to content

Instantly share code, notes, and snippets.

@ghiculescu
Created August 27, 2013 11:58
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ghiculescu/6352625 to your computer and use it in GitHub Desktop.
Save ghiculescu/6352625 to your computer and use it in GitHub Desktop.
Jekyll nginx config
server {
listen 80; # listen on http (port 80)
server_name blog.example.com; # the domain name people will access your site at
root /home/deployer/docs; # path to deploy to, eg: "/home/#{user}/docs". this should match whatever was in your Capistrano deploy file.
expires 1d; # how long should static files be cached for, see http://nginx.org/en/docs/http/ngx_http_headers_module.html for options.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment