Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/perl/10.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/variables/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
未知指令“;perl“U模块”;_Perl_Variables_Nginx_Module - Fatal编程技术网

未知指令“;perl“U模块”;

未知指令“;perl“U模块”;,perl,variables,nginx,module,Perl,Variables,Nginx,Module,尝试使用以下/etc/nginx/nginx.conf设置启动nginx时,我收到一个未知指令“perl\u modules”错误: user nginx; worker_processes 1; error_log /var/log/nginx/error.log warn; pid /var/run/nginx.pid; events { worker_connections 1024; } http { include /etc/

尝试使用以下
/etc/nginx/nginx.conf
设置启动nginx时,我收到一个
未知指令“perl\u modules”
错误:

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    perl_modules perl/lib;

    perl_set $subdomain_uppercase 'sub {
        my $r = shift;
        my $subdomain = $r->subdomain;
        $subdomain = uc($subdomain);
        return $subdomain;
    }';

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;
}
我已安装perl:

root@0f0babe794c4:/etc/nginx# perl -v

This is perl 5, version 20, subversion 2 (v5.20.2) built for x86_64- linux-gnu-thread-multi
 (with 92 registered patches, see perl -V for more detail)
在我的nginx设置中,该模块似乎已启用:

root@0f0babe794c4:/etc/nginx# nginx -V
nginx version: nginx/1.9.15
built by gcc 4.9.2 (Debian 4.9.2-10)
built with OpenSSL 1.0.1k 8 Jan 2015
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --with-http_perl_module=dynamic --add-dynamic-module=debian/extra/njs-1c50334fbea6/nginx --with-threads --with-stream --with-stream_ssl_module --with-http_slice_module --with-mail --with-mail_ssl_module --with-file-aio --with-ipv6 --with-http_v2_module --with-cc-opt='-g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-z,relro -Wl,--as-needed'
注意,上面包括
——with-http\u perl\u module=dynamic


我是否错过了启用此perl模块以便设置动态变量的额外步骤?

您将ngx_http_perl_模块安装为动态模块(
--with-http_perl_module=dynamic
),因此需要在nginx.conf的开头加载此模块:

load_module /usr/lib/nginx/modules/ngx_http_perl_module.so

我使用了您的
--modules path
选项中的path,因此请检查此目录以获得http_perl模块文件的确切名称

您是如何安装nginx的?告诉分布式版本(debian?)和nginx包的源代码。谢谢,工作得很好。我在
/etc/nginx/nginx.conf
文件中添加了以下内容以使其工作:
用户nginx;工人1;error\u log/var/log/nginx/error.log warn;pid/var/run/nginx.pid;load_module/usr/lib/nginx/modules/ngx_http_perl_module.so;事件{worker_connections 1024;}
http{
块之前,来自我的原始问题中的上述示例。