Building nginx on ubuntu karmic

| 0 Comments | 0 TrackBacks

Building nginx on ubuntu

sudo aptitude -R install build-essential libpcre3 libpcre3-dev libpcrecpp0 libssl-dev zlib1g-dev

./configure --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 \
  --lock-path=/var/lock/nginx.lock \
  --user=www-data \
  --group=www-data \
  --http-log-path=/var/log/nginx/access.log \
  --http-client-body-temp-path=/var/lib/nginx/body \
  --http-proxy-temp-path=/var/lib/nginx/proxy \
  --http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
  --with-cc-opt="-O2 -fno-strict-aliasing" \
  --with-http_gzip_static_module \
  --with-http_ssl_module \
  --with-http_geoip_module

No TrackBacks

TrackBack URL: http://www.sci-blog.com/mt/mt-tb.cgi/145

Leave a comment

Recent Entries

Particle filter and Rao Blackwellised particle filter
View imageAny improvements?Detection errors----------------------------- PF      = 0RBPF    = 0  Execution time  (seconds)------------------------- PF      = 6.4465RBPF    = 11.6923…
Pingfire 1.0.4 compatible with firefox 3.6
Updated version of pingfire extension. This is my fork with bit.ly supportScreenshot View imagepingfire.xpi…
Updated pingfire extension
Pingfire firefox extension compatible with 3.6.2 firefox. Usual disclaimer: I do it for my own use so no guarantee it…