Initial commit

This commit is contained in:
2025-02-22 12:19:31 +01:00
commit 0c30086b37
11 changed files with 155 additions and 0 deletions
Executable
+5
View File
@@ -0,0 +1,5 @@
#!/usr/bin/env bash
mkdir -p ssl
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout ssl/localhost.key -out ssl/localhost.crt -subj "/C=US/ST=YourState/L=YourCity/O=YourOrganization/CN=localhost"
docker buildx build -t my-httpd .