Skip to content

Instantly share code, notes, and snippets.

@KennedyTedesco
Last active September 5, 2016 16:12
Show Gist options
  • Save KennedyTedesco/de60105288a47a09af86800c45a1070c to your computer and use it in GitHub Desktop.
Save KennedyTedesco/de60105288a47a09af86800c45a1070c to your computer and use it in GitHub Desktop.
Ghost in a subdir
# Nginx location:
location ^~ /blog {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://127.0.0.1:2368;
proxy_redirect off;
}
# Ghost config:
production: {
url: 'https://www.yourdomain.com/blog',
mail: {},
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment