Skip to content

Instantly share code, notes, and snippets.

@kindly
Created May 8, 2012 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kindly/2637431 to your computer and use it in GitHub Desktop.
Save kindly/2637431 to your computer and use it in GitHub Desktop.
nginx sample config for datastore
server {
listen 80 default;
server_name localhost;
access_log /var/log/nginx/localhost.access.log;
location / {
# location of apache or ckan under paster
proxy_pass http://127.0.0.1:8080;
proxy_set_header Host $host;
}
location /elastic/ {
internal;
# location of elastic search
proxy_pass http://elasticsearch.server.org:9200/;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment