Files
invyone_homepage/nginx.conf
T
chpark 79c1d4ac82
Build & Deploy Homepage / build-and-deploy (push) Successful in 9s
feat: initial homepage with k8s auto-deploy
- 반응형 랜딩 페이지 (hero, features, how-it-works, solutions, AI agent, use cases, architecture, testimonials, FAQ, CTA)
- 모든 체험/로그인 CTA는 https://solution.invyone.com/login 으로 연결
- Dockerfile + nginx 설정으로 정적 파일 서빙
- k8s manifests (namespace/deployment/service NodePort 30082)
- Gitea Actions 자동 배포 워크플로우
2026-04-20 15:16:03 +09:00

29 lines
711 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
gzip on;
gzip_types text/plain text/css application/javascript application/json image/svg+xml;
gzip_min_length 1024;
add_header X-Frame-Options "SAMEORIGIN" always;
add_header X-Content-Type-Options "nosniff" always;
add_header Referrer-Policy "strict-origin-when-cross-origin" always;
location / {
try_files $uri $uri/ /index.html;
}
location = /healthz {
access_log off;
return 200 "ok\n";
}
location ~* \.(?:css|js|svg|png|jpg|jpeg|gif|ico|woff2?)$ {
expires 7d;
add_header Cache-Control "public, max-age=604800";
}
}