JobmakerSite/n8ngo/nginx.conf
Ricardo Carneiro a1242cdaaf
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
feat: add n8ngo and kvmote landing pages as subdomains
- 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>
2026-04-16 19:31:06 -03:00

20 lines
397 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;
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;
}
}