Anton Dolganin

I'm an engineer focused on solving problems, not tied to any specific language. Architecture, development, DevOps — I choose the right tools for the job and build solutions that work in production and scale without pain.

Need to return a test JSON, mock response, or block an annoying callback — but don't want to touch the backend?

location = /fake-api {
    default_type application/json;
    return 200 '{"status":"ok","debug":true}';
}

No proxying, no controller, no mock server. Just Nginx. I use this for local testing, quick stubs, or when frontend’s ready and backend’s not.

Nginx as middleware: quick patch, no backend needed