Welcome! Log In Create A New Profile

Advanced

Re: pcre_compile() failed: unrecognized character after (?<

Igor Sysoev
December 11, 2009 08:50AM
On Fri, Dec 11, 2009 at 01:10:33PM +0000, Phillip Oldham wrote:

> server {
> server_name ~^test\.(?<domain>.+)$;
>
> location / {
> root /sites/$domain;
> }
> }
>
> # nginx -t
> [emerg]: pcre_compile() failed: unrecognized character after (?< in "^test\.(?<domain>.+)$" at "domain>.+)$" in /etc/nginx/vhosts/testdomain:11
> configuration file /etc/nginx/nginx.conf test failed
> # nginx -V
> nginx version: nginx/0.8.29
> built by gcc 4.1.2 20080704 (Red Hat 4.1.2-44)
> TLS SNI support disabled
> configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --pid-path=/var/run/nginx.pid --with-rtsig_module --with-select_module --with-poll_module --with-http_ssl_module --with-http_stub_status_module --with-http_gzip_static_module --with-http_dav_module --with-http_flv_module --with-http_xslt_module --with-http_random_index_module --with-http_image_filter_module --http-log-path=/var/log/nginx/access.log --with-md5=/usr/lib --with-sha1=/usr/lib --with-http_perl_module
>
> Can't tell what I'm doing wrong. Advice please?

It seems you have PCRE prior to 7.0, try:

- server_name ~^test\.(?<domain>.+)$;
+ server_name ~^test\.(?P<domain>.+)$;


--
Igor Sysoev
http://sysoev.ru/en/

_______________________________________________
nginx mailing list
nginx@nginx.org
http://nginx.org/mailman/listinfo/nginx
Subject Author Posted

pcre_compile() failed: unrecognized character after (?<

Phillip Oldham December 11, 2009 08:18AM

Re: pcre_compile() failed: unrecognized character after (?<

Peter Leonov December 11, 2009 08:46AM

Re: pcre_compile() failed: unrecognized character after (?<

Igor Sysoev December 11, 2009 08:52AM

Re: pcre_compile() failed: unrecognized character after (?<

Igor Sysoev December 11, 2009 08:50AM

Re: pcre_compile() failed: unrecognized character after (?<

Phillip Oldham December 11, 2009 10:02AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 212
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready