Skip to content

Dev#18

Merged
neilpang merged 3 commits into
masterfrom
dev
May 8, 2026
Merged

Dev#18
neilpang merged 3 commits into
masterfrom
dev

Conversation

@neilpang
Copy link
Copy Markdown
Owner

@neilpang neilpang commented May 8, 2026

No description provided.

Copilot AI review requested due to automatic review settings May 8, 2026 20:03
@neilpang neilpang merged commit e1fa25d into master May 8, 2026
4 checks passed
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates SSL issuance and Nginx HTTPS listener configuration, plus refreshes DockerHub workflow action versions for building/pushing images.

Changes:

  • Skip ACME_DOMAINS entries containing wildcard (*) during SSL issuance in updatessl.sh.
  • Adjust Nginx template to enable HTTP/2 via http2 on; rather than the listen ... http2 parameter.
  • Bump Docker GitHub Actions used in the DockerHub workflow to newer major versions.

Reviewed changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated 4 comments.

File Description
updatessl.sh Adds logic intended to skip wildcard domain entries during certificate issuance.
nginx.tmpl Changes how HTTP/2 is enabled for HTTPS listeners across several server blocks.
.github/workflows/dockerhub.yml Updates Docker-related GitHub Actions versions for multi-arch builds/pushes.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread updatessl.sh
if grep ACME_DOMAINS $DEFAULT_CONF ; then
for d_list in $(grep ACME_DOMAINS $DEFAULT_CONF | cut -d ' ' -f 2);
do
if echo "$d_list" | grep '*'; then
Comment thread nginx.tmpl
{{ if $enable_ipv6 }}
listen [::]:{{ $external_https_port }} ssl http2;
listen [::]:{{ $external_https_port }} ssl;
http2 on;
Comment thread nginx.tmpl
Comment on lines +367 to 376
listen {{ $external_https_port }} ssl {{ $default_server }};
http2 on;
{{ if eq $enable_socks "true" }}
listen unix:/etc/nginx/socks/{{ $host }}.{{ $external_https_port }}.sock ssl http2 {{ $default_server }};
listen unix:/etc/nginx/socks/{{ $host }}.{{ $external_https_port }}.sock ssl {{ $default_server }};
http2 on;
{{ end }}
{{ if $enable_ipv6 }}
listen [::]:{{ $external_https_port }} ssl http2 {{ $default_server }};
listen [::]:{{ $external_https_port }} ssl {{ $default_server }};
http2 on;
{{ end }}
Comment thread nginx.tmpl
Comment on lines +496 to 505
listen {{ $external_https_port }} ssl {{ $default_server }};
http2 on;
{{ if eq $enable_socks "true" }}
listen unix:/etc/nginx/socks/{{ $host }}.{{ $external_https_port }}.sock ssl http2 {{ $default_server }};
listen unix:/etc/nginx/socks/{{ $host }}.{{ $external_https_port }}.sock ssl {{ $default_server }};
http2 on;
{{ end }}
{{ if $enable_ipv6 }}
listen [::]:{{ $external_https_port }} ssl http2 {{ $default_server }};
listen [::]:{{ $external_https_port }} ssl {{ $default_server }};
http2 on;
{{ end }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants