Skip to content

Instantly share code, notes, and snippets.

@vividvilla
Created November 28, 2018 10:07
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 vividvilla/deec57750ed993c6db04668ee1c2f72f to your computer and use it in GitHub Desktop.
Save vividvilla/deec57750ed993c6db04668ee1c2f72f to your computer and use it in GitHub Desktop.
Nginx POST and GET request serve static JSON
server {
listen 9999;
# This is the key.
error_page 405 =200 $uri;
location /test {
add_header 'Content-Type' 'application/json' always;
alias /Users/me/abc.json;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment