Pre-launch page for nxtgauge.com with email waitlist capture, Nxtgauge branding, and Powered by Traceworks footer. Includes nginx.conf for static site deployment. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
23 lines
506 B
Nginx Configuration File
23 lines
506 B
Nginx Configuration File
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;
|
|
}
|
|
}
|