/usr/local/nginx/conf/nginx.conf
: ( Nginx Default 的配置文件)
server {
listen 80;
listen [::]:80 ipv6only=on;
server_name _;
}
...
include vhost/*.conf;
}
/usr/local/nginx/conf/vhost/xxx.conf
:
server {
...
listen 443 ssl http2 fastopen=3 reuseport;
listen [::]:443 ssl http2 fastopen=3 reuseport ipv6only=on;
...
}
...
server {
listen 80;
listen [::]:80 ipv6only=on;
server_name xxxx.com;
location / {
rewrite ^/(.*)$ https://xxx.com/$1 permanent;
}
}
service nginx reload
提示错误: nginx: [emerg] duplicate listen options for [::]:80 in /usr/local/nginx/conf/vhost/xxx.conf:97
请问我的配置错在哪里呢?我想在 IPv6 访问的时候也能重定向到 https 页面。
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.