Skip to content

Commit b5c33c6

Browse files
committed
Sync with nginx-http3 (ononoki1/nginx-http3@11c4cc2)
1 parent eb563f1 commit b5c33c6

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: build
22
on:
33
schedule:
4-
- cron: "0 */12 * * *"
4+
- cron: "0 0 * * *"
55
push:
66
branches: [main]
77
paths:
@@ -20,7 +20,7 @@ jobs:
2020
- name: Upload
2121
uses: actions/[email protected]
2222
with:
23-
name: v6.${{ env.minor }}.${{ env.patch }}
23+
name: v7.${{ env.minor }}.${{ env.patch }}
2424
path: /home/runner/work/_temp/_github_home/nginx
2525
- name: Update
2626
if: ${{ env.change }}
@@ -33,5 +33,5 @@ jobs:
3333
with:
3434
files: /home/runner/work/_temp/_github_home/nginx
3535
body: "Size: ${{ env.hash }}"
36-
tag_name: v6.${{ env.minor }}.${{ env.patch }}
36+
tag_name: v7.${{ env.minor }}.${{ env.patch }}
3737
generate_release_notes: false

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ jobs:
1818
- name: Upload
1919
uses: actions/[email protected]
2020
with:
21-
name: v6.${{ env.minor }}.${{ env.patch }}
21+
name: v7.${{ env.minor }}.${{ env.patch }}
2222
path: /home/runner/work/_temp/_github_home/nginx

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM debian:bullseye-slim
1+
FROM debian:bullseye
22
COPY build.sh /build.sh
33
ENTRYPOINT ["bash", "/build.sh"]

build.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ auto/configure --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx \
3232
--http-proxy-temp-path=/var/cache/nginx/proxy_temp \
3333
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \
3434
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \
35-
--user=www-data --group=www-data \
36-
--with-file-aio --with-threads --with-pcre-jit --with-http_sub_module \
37-
--with-http_ssl_module --with-http_v2_module --with-http_v3_module \
35+
--user=www-data --group=www-data --with-file-aio \
36+
--with-threads --with-pcre-jit --with-http_ssl_module \
37+
--with-http_v2_module --with-http_v3_module \
3838
--without-select_module --without-poll_module \
3939
--without-http_access_module --without-http_autoindex_module \
4040
--without-http_browser_module --without-http_charset_module \

minor

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2
1+
-1

0 commit comments

Comments
 (0)