./configure \
        --prefix=/usr/share/nginx \
        --sbin-path=/usr/sbin/nginx \
        --conf-path=/etc/nginx/nginx.conf \
        --pid-path=/var/run/nginx.pid \
        --lock-path=/var/lock/nginx.lock \
        --error-log-path=/var/log/nginx/error.log \
        --http-log-path=/var/log/access/access.log \
        --user=www-data \
        --group=www-data \
        --with-http_ssl_module \
        --with-http_gzip_static_module \
        --with-ngx_http_gzip_module \
        --with-ngx_http_access_module \

исход
./configure: error: invalid option "--with-ngx_http_access_module"
make: *** No targets specified and no makefile found.  Stop.
make: *** No rule to make target `install'.  Stop.

почему не правильная опция?
например если оставить только с ней, то все ок будет. Проблема именно в
        --with-http_gzip_static_module \
        --with-ngx_http_gzip_module \
        --with-ngx_http_access_module \

Posted at Nginx Forum: 
https://forum.nginx.org/read.php?21,279496,279496#msg-279496

_______________________________________________
nginx-ru mailing list
nginx-ru@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx-ru

Ответить