Skip to content

Instantly share code, notes, and snippets.

@DarrylDias
Last active January 4, 2016 22:19
Show Gist options
  • Save DarrylDias/8687098 to your computer and use it in GitHub Desktop.
Save DarrylDias/8687098 to your computer and use it in GitHub Desktop.
nginx.conf for running Ghost on Arch Linux ARM.
http {
server {
listen 80;
location / {
proxy_pass http://127.0.0.1:2368;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}
}
events {
worker_connections 5000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment