1
Fork 0
blog/_posts/2011-09-02-compile-nginx.md

38 lines
1 KiB
Markdown
Raw Permalink Normal View History

---
2018-01-01 19:04:05 +00:00
permalink: "/{{ year }}/{{ month }}/{{ day }}/compile-nginx"
2017-07-09 12:18:22 +00:00
title: Compile nginx
2018-01-01 19:04:05 +00:00
published_date: "2011-09-02 00:00:00 +0100"
layout: post.liquid
data:
route: blog
2011-09-01 22:37:31 +00:00
---
I'm using [nginx][] as my main webserver and proxy for all my other projects (let it be node.js or ruby things).
Now that [ipv6][] is more and more used, I decided to let this blog get served over ipv6 as well.
Get nginx' latest version (1.0.6 at this time) from their [downloads section][download].
To compile nginx with ipv6 support all you need to do is let `configure` know about this (last line):
./configure \
--prefix=/usr/local \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_gzip_static_module \
--with-ipv6
Then compile and install it:
make
su -c 'make install'
Add this line to your nginx.conf:
listen [::]:80;
Restart your server and it just works.
[nginx]: http://nginx.org/en/
[download]: http://nginx.org/en/download.html
[ipv6]: http://en.wikipedia.org/wiki/Ipv6