Skip to content

Instantly share code, notes, and snippets.

@tkrisztian95
Last active May 11, 2024 20:40
Show Gist options
  • Save tkrisztian95/0d09595dccd500527a8025f790141c8d to your computer and use it in GitHub Desktop.
Save tkrisztian95/0d09595dccd500527a8025f790141c8d to your computer and use it in GitHub Desktop.
Nginx server JSON file as an API response
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /var/www;
location /api/endpoint {
default_type application/json;
index apiResponse.json;
alias /var/www/;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment