Regular Expressions 101

Community Patterns

nginx - all subdomain except "api, panel and ..."

1

Regular Expression
PCRE2 (PHP >=7.3)

/
^((\b(?!api|panel)\S+|[a-zA-z0-9]\b))+\.example\.com$
/
gm

Description

is used for nginx nameserver regex. pass all except some subdomains.

Submitted by Mahdad - 3 years ago