Enable TLS by default

This commit is contained in:
2025-09-23 00:40:42 -07:00
parent bbe7f2a370
commit a07f52807a
7 changed files with 177 additions and 37 deletions

View File

@@ -32,7 +32,7 @@ EXPOSE 8080
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://localhost:8080/health || exit 1
CMD wget --no-verbose --tries=1 --spider https://localhost:8080/health || exit 1
# Run the binary
CMD ["./middleware"]