refactor: remove port 80 listeners and enforce HTTPS-only in tests
Test nginx configuration / Static Analysis (pull_request) Failing after 5s
Test nginx configuration / nginx Syntax Check (pull_request) Successful in 16s
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 1m6s

Removes the listen 80 / listen [::]:80 blocks from cdn.conf since
port 80 is blocked at the firewall. Updates test 6 to enforce that
no custom server block listens on port 80 at all.
This commit is contained in:
2026-03-03 16:10:51 -08:00
committed by Naomi Carrigan
parent 55fcab69a1
commit 493d758df8
2 changed files with 12 additions and 16 deletions
-2
View File
@@ -1,6 +1,4 @@
server {
listen 80;
listen [::]:80;
listen 443 ssl;
listen [::]:443 ssl;