All checks were successful
Build and Deploy KVMote Landing Page / build (push) Successful in 34s
Build and Deploy n8ngo Landing Page / build (push) Successful in 47s
Build and Deploy KVMote Landing Page / deploy (push) Successful in 15s
Build and Deploy n8ngo Landing Page / deploy (push) Successful in 11s
Build and Deploy JobMaker / build (push) Successful in 41s
Build and Deploy JobMaker / deploy (push) Successful in 13s
Build and Deploy JobMaker / notify (push) Successful in 1s
- Add n8ngo/ and kvmote/ subfolders with Dockerfiles, nginx configs and static files - Add dedicated Gitea workflows for each landing page (ports 8084/8085) - Add paths-ignore to jobmaker workflow so it only triggers on its own files - Add .dockerignore to keep landing page folders out of jobmaker image Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
407 B
Nginx Configuration File
20 lines
407 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name _;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
gzip on;
|
|
gzip_types text/html text/css application/javascript image/png;
|
|
gzip_min_length 256;
|
|
|
|
location ~* \.(css|js|png|jpg|svg|ico|woff2?)$ {
|
|
expires 30d;
|
|
add_header Cache-Control "public, immutable";
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|