制作 Nginx 301 重定向镜像

本文档运行在腾讯云的 K8S 服务 TKE 上,由于其负载均衡重定向仅支持 302 重定向,于是自己制作一个 Nginx 重定向的镜像,然后将带 www 的域名指向不带 www 的域名。

步骤

1. 准备 Nginx 配置

运行 Nginx 容器

# docker run --name nginx -p 80:80 nginx:1.17.5-alpine
1

拷贝容器中的 default.conf 到本地。

# docker cp nginx:/etc/nginx/conf.d/default.conf default.conf
1

修改配置文件,增加 301 重定向

server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;
    
    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }

    ## ------
    ## HTTP Host Header 包含 dhcp.cn,就 301 重定向到 https://dhcp.cn/
    ## ------
    if ($host ~* dhcp.cn) {
        rewrite ^/(.*)$ https://dhcp.cn/$1 permanent;
    }

   #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #    root           html;
    #    fastcgi_pass   127.0.0.1:9000;
    #    fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    #    include        fastcgi_params;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51

2. 制作镜像

编写 dockerfile,用带 alpine 标签的镜像,该镜像是 mini 版的 Linux,只有 8MB,节省资源,也安全。

FROM nginx:1.17.5-alpine
ADD default.conf /etc/nginx/conf.d/
1
2

构建镜像。

docker build . -t nginx:1.17.5-alpine-301
1

3. 运行容器,并测试

运行容器

docker run --name nginx301 -p 8080:80 nginx:1.17.5-alpine-301
1

301 重定向测试。

# curl -H "HOST: www.dhcp.cn" localhost:8080 -I
HTTP/1.1 301 Moved Permanently
Server: nginx/1.17.5
Date: Sat, 02 Nov 2019 01:50:35 GMT
Content-Type: text/html
Content-Length: 169
Connection: keep-alive
Location: https://dhcp.cn/

# curl -H "HOST: dhcp.cn" localhost:8080 -I
HTTP/1.1 301 Moved Permanently
Server: nginx/1.17.5
Date: Sat, 02 Nov 2019 01:50:45 GMT
Content-Type: text/html
Content-Length: 169
Connection: keep-alive
Location: https://dhcp.cn/
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

301 重定向成功。

4. 部署

参照 制作 gitbook 文档镜像,运行在 K8S 上,部署 K8S 资源 Deployment、Service、Ingress ,即可实现在 K8S 上的 301 重定向。