Something Big
Is Coming.
India's marketplace for jobs and professional services —
verified professionals, AI-powered tools, fair for everyone.
No spam. We'll only email when we launch.
✓ You're on the list! We'll reach out when we go live.
Something went wrong. Please try again.
nginx.conf: |
server {
listen 80;
server_name nxtgauge.com www.nxtgauge.com;
root /usr/share/nginx/html;
index index.html;
# Serve static assets with caching
location /assets/ {
expires 30d;
add_header Cache-Control "public, immutable";
}
# All requests serve the single page
location / {
try_files $uri $uri/ /index.html;
}
# Redirect www to non-www
if ($host = www.nxtgauge.com) {
return 301 https://nxtgauge.com$request_uri;
}
}
kind: ConfigMap
metadata:
name: nxtgauge-coming-soon-html
namespace: nxtgauge