add reuse copyright information
Build Container Image / build_amd64 (push) Successful in 56s Details
Build Container Image / build_i386 (push) Successful in 53s Details
Build Container Image / publish_amd64 (push) Successful in 25s Details
Build Container Image / publish_i386 (push) Successful in 25s Details
Build Container Image / build_arm64 (push) Successful in 3m45s Details
Build Container Image / publish_arm64 (push) Successful in 33s Details
Build Container Image / build_riscv64 (push) Successful in 5m26s Details
Build Container Image / publish_riscv64 (push) Successful in 44s Details
Build Container Image / build_armhf (push) Successful in 7m48s Details
Build Container Image / build_manifest (push) Successful in 6s Details
Build Container Image / publish_armhf (push) Successful in 41s Details
Build Container Image / publish_manifest (push) Successful in 23s Details

This commit is contained in:
Daniel Wolf 2023-10-25 11:04:05 -04:00
parent f4590df081
commit 542ce72280
Signed by: nephatrine
GPG Key ID: 59D70EC2E4AAB4D0
16 changed files with 70 additions and 0 deletions

8
.reuse/dep5 Normal file
View File

@ -0,0 +1,8 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: docker-nginx-ssl
Upstream-Contact: Daniel Wolf <nephatrine@gmail.com>
Source: https://code.nephatrine.net/NephNET/docker-nginx-ssl
Files: override/etc/s6-overlay/*
Copyright: 2022 - 2023 Daniel Wolf <nephatrine@gmail.com>
License: ISC

8
LICENSES/ISC.txt Normal file
View File

@ -0,0 +1,8 @@
ISC License:
Copyright (c) 2004-2010 by Internet Systems Consortium, Inc. ("ISC")
Copyright (c) 1995-2003 by Internet Software Consortium
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
services:
nginx:
build: .

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 - 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
/mnt/config/log/letsencrypt.log {
missingok
notifempty

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 - 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
/mnt/config/log/nginx-access.log /mnt/config/log/nginx-error.log {
missingok
notifempty

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 - 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
daemon off;
error_log /mnt/config/log/nginx-error.log warn;
worker_processes 4;

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 - 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
map $remote_addr $cache_status {
127.0.0.1 $upstream_cache_status;
default "";

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 - 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
gzip on;
gzip_comp_level 4;
gzip_min_length 256;

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 - 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
#NOSSL:listen 80;
#NOSSL:listen [::]:80;
#SSL:listen 443 quic reuseport;

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 - 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
#NOSSL:listen 80;
#NOSSL:listen [::]:80;
#SSL:listen 443 quic;

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 - 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers off;
ssl_dhparam /mnt/config/ssl/dhparam.pem;

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 - 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
server {
server_name _;
include /mnt/config/etc/nginx.d/_server_local.inc;

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 - 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
#include /mnt/config/etc/nginx.d/_cache.inc;
#server {

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2018 - 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
#SSL:server {
#SSL: listen 80 default_server;
#SSL: listen [::]:80 default_server;

View File

@ -1,4 +1,7 @@
#!/command/with-contenv /bin/bash
# SPDX-FileCopyrightText: 2022 - 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
if [[ -z "${SSLDOMAINS}" && ! -d /mnt/config/ssl ]]; then
exit 0

View File

@ -1,4 +1,7 @@
#!/command/with-contenv /bin/bash
# SPDX-FileCopyrightText: 2022 - 2023 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
if [[ -z "${SSLDOMAINS}" && ! -d /mnt/config/ssl ]]; then
exit 0