What does the at-sign “@” mean in nginx location blocks?

The answer is in official documentation.

The “@” prefix defines a named location. Such a location is not used
for a regular request processing, but instead used for request
redirection. They cannot be nested, and cannot contain nested
locations.

Leave a Comment