码迷,mamicode.com
首页 > 其他好文 > 详细

nginx 支持ipv6设置

时间:2018-11-28 20:36:29      阅读:593      评论:0      收藏:0      [点我收藏+]

标签:文件   技术   figure   nginx   bsp   ice   安装路径   tables   make   

为了使nginx支持ipv6 访问需要做以下配置:

1、找到nginx的安装路径:

 使用命令:whereis nginx 查看nginx安装路径:
技术分享图片

进入nginx执行文件目录:

技术分享图片

先用./nginx -V 查看已安装的模块

如果有--with-ipv6,则表示已安装此模块,否则需要重新编译安装

技术分享图片

 

进入nginx解压文件目录:

# 按需添加编译参数

./configure --prefix=/usr/local/software/nginx/ --with-ipv6( --with-ipv6必须加,让nginx开启IPV6支持配置)

技术分享图片

#编译源码
make
#安装
make install
或者:
./configure --prefix=/usr/local/software/nginx/ --with-ipv6 && make && make install 安装到指定路径

 

 

 

 

 

2、nginx配置增加ipv6监听,负载均衡也修改为ipv6地址

 

Linux 开放ipv680端口

ip6tables -I INPUT -p tcp --dport 80 -j ACCEPT

Service ip6tables save

 或者以下方式访问

配置同时支持v4 v6

listen 80;
listen [::]:80 ipv6only=on;

 

nginx 支持ipv6设置

标签:文件   技术   figure   nginx   bsp   ice   安装路径   tables   make   

原文地址:https://www.cnblogs.com/pinghengxing/p/10034200.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!