Quantcast
Channel: Web Development – GeoffStratton.com
Viewing all articles
Browse latest Browse all 31

Recompile Nginx Installed With Apt-Get

$
0
0

So you’re running an Ubuntu server with the latest version of Nginx that you installed with apt-get.

One minor inconvenience with Nginx (compared with Apache) is that it has no hook for dynamically adding new modules. Instead you have to recompile Nginx to add them. There’s a good reason for this (speed), but you miss it sometimes when with Apache you can just run a2enmod.

To add a new module, you could apt-get purge your existing Nginx installation, then download the source from Nginx.org and compile it, but you don’t want to blow away your existing configuration files and directories. Basically you just want to add a couple of compiler switches to the binary created by the Ubuntu packaging system while leaving everything else intact.

One way to do this is to recompile Nginx into a .deb package with the modules you want and install that instead.

So download the Nginx source from the ppa repository:

$ cd /opt
$ apt-get build-dep nginx
$ apt-get source nginx

Download one or more modules you want to compile in (we’ll use the push-stream module).

$ cd /opt/nginx-1.5.10/debian/modules
$ git clone https://github.com/wandenberg/nginx-push-stream-module.git

Edit /opt/nginx-1.5.10/debian/rules, find the list of compiler arguments and additional modules, and under ‘full’, add your new modules:

            [...] 
            --with-http_sub_module \
            --with-http_xslt_module \
            --with-ipv6 \
            --with-mail \
            --with-mail_ssl_module \
            --add-module=$(MODULESDIR)/nginx-auth-pam \
            --add-module=$(MODULESDIR)/nginx-dav-ext-module \
            --add-module=$(MODULESDIR)/nginx-echo \
            --add-module=$(MODULESDIR)/nginx-upstream-fair \
            --add-module=$(MODULESDIR)/ngx_http_substitutions_filter_module \
            # add your new modules
            --add-module=$(MODULESDIR)/nginx-push-stream-module \

Rebuild the Nginx packages:

$ /opt/nginx-1.5.10/dpkg-buildpackage -uc -b

After everything has compiled, you’ll see the new *.deb packages in the parent directory:

$ ls -al /opt

-rw-r--r--  1 root root   69282 Mar  2 06:24 nginx_1.5.10-1~precise0_all.deb
-rw-r--r--  1 root root    4956 Mar  2 06:26 nginx_1.5.10-1~precise0_amd64.changes
-rw-r--r--  1 root root   83054 Mar  2 06:24 nginx-common_1.5.10-1~precise0_all.deb
-rw-r--r--  1 root root   81786 Mar  2 06:24 nginx-doc_1.5.10-1~precise0_all.deb
-rw-r--r--  1 root root  685964 Mar  2 06:26 nginx-extras_1.5.10-1~precise0_amd64.deb
-rw-r--r--  1 root root 4833698 Mar  2 06:26 nginx-extras-dbg_1.5.10-1~precise0_amd64.deb
-rw-r--r--  1 root root  521218 Mar  2 06:26 nginx-full_1.5.10-1~precise0_amd64.deb
-rw-r--r--  1 root root 3237026 Mar  2 06:26 nginx-full-dbg_1.5.10-1~precise0_amd64.deb
-rw-r--r--  1 root root  348926 Mar  2 06:26 nginx-light_1.5.10-1~precise0_amd64.deb
-rw-r--r--  1 root root 2086840 Mar  2 06:26 nginx-light-dbg_1.5.10-1~precise0_amd64.deb
-rw-r--r--  1 root root  391920 Mar  2 06:26 nginx-naxsi_1.5.10-1~precise0_amd64.deb
-rw-r--r--  1 root root 2241926 Mar  2 06:26 nginx-naxsi-dbg_1.5.10-1~precise0_amd64.deb
-rw-r--r--  1 root root  357934 Mar  2 06:24 nginx-naxsi-ui_1.5.10-1~precise0_all.deb

Remove nginx:

$ apt-get remove nginx

Make sure you don’t do apt-get purge, or you’ll lose all your config files.

Since you updated nginx-full, install it:

$ dpkg --install /opt/nginx-full_1.5.10-1~precise0_amd64.deb

Run nginx -V to ensure the Nginx binary shows your new module:

[...] --add-module=/opt/nginx-1.5.10/debian/modules/nginx-push-stream-module

Finally, you want to block further updates from apt-get, or else it’ll just overwrite your custom Nginx packages.

$ apt-mark hold nginx-full

If you want to update Nginx again with apt-get, just run apt-mark unhold nginx-full.

The post Recompile Nginx Installed With Apt-Get appeared first on GeoffStratton.com.


Viewing all articles
Browse latest Browse all 31

Trending Articles