Solved nginx Compile options

Hello,

I would like to install www/nginx from port with the following options but it look like my syntaxt is incorrect..
Code:
./configure --with-http_ssl_module --with-http_spdy_module --with-http_gzip_static_module --with-file-aio --without-http_autoindex_module --without-http_browser_module --without-http_fastcgi_module --without-http_geo_module --without-http_map_module --without-http_proxy_module --without-http_memcached_module --without-http_ssi_module --without-http_userid_module --without-mail_pop3_module --without-mail_imap_module --without-mail_smtp_module --without-http_split_clients_module --without-http_uwsgi_module --without-http_scgi_module --without-http_limit_conn_module --without-http_referer_module --without-http-cache --without-http_upstream_ip_hash_module --with-ld-opt="-L /usr/local/lib" && make && make install
Could someone please advise on the correct way of achieving this please?
 
SPDY is gone in favor of the HTTPv2. When you use port, you don't run the configure script manually, ports infrastructure will take care of this. Regarding options - cd /usr/ports/www/nginx && make config
 
Back
Top