File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ all: build
22
33build :
44 @docker build --tag=eswork/nginx .
5+ lt :
6+ @docker build --tag=eswork/nginx:lt -f Dockerfile.lt .
57
68release : build
79 @docker build --tag=eswork/nginx:$(shell cat VERSION) .
10+ release-lt : build
11+ @docker build --tag=eswork/nginx:$(shell cat VERSION) -lt -f Dockerfile.lt .
Original file line number Diff line number Diff line change 33
44## Supported tags and respective ` Dockerfile ` links
55
6- - [ ` latest ` , ` 1.12.1 ` (1.12.1/Dockerfile)] ( https://github.com/EsWork/docker-nginx/blob/master/Dockerfile )
6+ - [ ` latest ` , ` 1.12.1 ` (1.12.1/Dockerfile)] ( https://github.com/EsWork/docker-nginx/blob/master/Dockerfile )
7+ - [ (1.12.1-lt/Dockerfile)] ( https://github.com/EsWork/docker-nginx/blob/master/Dockerfile.lt )
8+
9+ * eswork/nginx 参考Features
10+ * eswork/nginx: lt 轻量化模块
711
812Features
913---
Original file line number Diff line number Diff line change @@ -106,10 +106,6 @@ http{
106106 #deny all;
107107 }
108108
109- location ~ /purge(/.*) {
110- proxy_cache_purge cache_one $host$1$is_args$args;
111- }
112-
113109 location / {
114110 proxy_pass http://demo;
115111 proxy_set_header Host $host;
You can’t perform that action at this time.
0 commit comments