Containerize for independent deployment
All checks were successful
Docker / build-and-push (push) Successful in 46s
All checks were successful
Docker / build-and-push (push) Successful in 46s
Adds a Dockerfile, nginx config, docker-compose.yml, and a Gitea Actions workflow (mirroring goonk's), so rack builds and ships as its own image rather than being embedded in goonk-cv's build - deploys stay fully decoupled. Targets a subdomain, not a goonk.se subpath, to avoid needing path-prefix rewriting kept in sync across the build, edge proxy, and container. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
12
nginx/default.conf
Normal file
12
nginx/default.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name _;
|
||||
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
||||
# Single static page, no client-side router - just serve what's asked for.
|
||||
location / {
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user