idea-nginx
idea-nginx copied to clipboard
RegEx named capture group not recognized as variable
In the code below, $page
is highlighted as an unknown variable.
location ~ ^/pages/(?<page>[^/]+)/?(edit)?$ {
root /var/www/website/pages;
try_files /$page/index.html /index.html =404;
}