Skip to content

Instantly share code, notes, and snippets.

@schneidmaster
Created May 1, 2015 21:40
Show Gist options
  • Save schneidmaster/5b80bbaffa4a079af7fd to your computer and use it in GitHub Desktop.
Save schneidmaster/5b80bbaffa4a079af7fd to your computer and use it in GitHub Desktop.
Sample Ghost nginx Config
server {
server_name .yourdomain.com;
access_log /srv/www/yourdomain.com/logs/access.log;
error_log /srv/www/yourdomain.com/logs/error.log;
passenger_app_root /srv/www/yourdomain.com/public;
passenger_enabled on;
passenger_app_type node;
passenger_startup_file index.js;
root /srv/www/yourdomain.com/public/public;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment