Skip to content

Instantly share code, notes, and snippets.

@tkrisztian95
Last active September 8, 2025 15:56
Show Gist options
  • Select an option

  • Save tkrisztian95/0d09595dccd500527a8025f790141c8d to your computer and use it in GitHub Desktop.

Select an option

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