Release to production, switching from caprover to a more generic webserver. #2

Merged
jason merged 5 commits from main into release 2025-08-16 20:56:58 +00:00
4 changed files with 0 additions and 25 deletions
Showing only changes of commit 32af535a4c - Show all commits

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;
}
}