Removing caprover definitions and deployment code

This commit is contained in:
2025-08-16 14:33:25 -06:00
parent 4eccf3b5a0
commit 32af535a4c
4 changed files with 0 additions and 25 deletions

View File

@@ -1,3 +0,0 @@
FROM docker.io/nginx:1-alpine
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY ./www /www

View File

@@ -1,4 +0,0 @@
{
"schemaVersion": 2,
"dockerfilePath": "./Dockerfile"
}

View File

@@ -1,4 +0,0 @@
# Script used to spin up a local webserver for development & testing
#!/bin/bash
podman run -it --rm -p 3000:80 $(podman build -q .)

View File

@@ -1,14 +0,0 @@
server {
listen 80;
root /www;
location / {
index index.html;
try_files $uri /index.html;
}
location /lucy {
index index.html;
try_files $uri /lucy.html;
}
}