5 lines
110 B
Plaintext
5 lines
110 B
Plaintext
{% if ALLOWED_METHODS != "" +%}
|
|
if ($request_method !~ ^({{ ALLOWED_METHODS }})$) {
|
|
return 405;
|
|
}
|
|
{% endif %} |