| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- # Nginx configuration for ShopCall.ai static hosting
- # Place this in your nginx sites-available directory and create a symlink in sites-enabled
- server {
- listen 80;
- listen [::]:80;
- server_name shopcall.ai www.shopcall.ai;
- # Redirect HTTP to HTTPS
- return 301 https://$server_name$request_uri;
- }
- server {
- listen 443 ssl http2;
- listen [::]:443 ssl http2;
- server_name shopcall.ai www.shopcall.ai;
- # SSL configuration
- ssl_certificate /path/to/your/certificate.crt;
- ssl_certificate_key /path/to/your/private.key;
- ssl_protocols TLSv1.2 TLSv1.3;
- ssl_ciphers HIGH:!aNULL:!MD5;
- # Root directory where your built files are located
- root /var/www/shopcall.ai/dist;
- index index.html;
- # Gzip compression
- gzip on;
- gzip_vary on;
- gzip_min_length 1024;
- gzip_types text/plain text/css text/xml text/javascript application/javascript application/xml+rss application/json;
- # Cache static assets
- location ~* \.(jpg|jpeg|png|gif|ico|css|js|svg|woff|woff2|ttf|eot)$ {
- expires 1y;
- add_header Cache-Control "public, immutable";
- }
- # React Router - serve index.html for all routes
- location / {
- try_files $uri $uri/ /index.html;
- }
- # Security headers
- add_header X-Frame-Options "SAMEORIGIN" always;
- add_header X-Content-Type-Options "nosniff" always;
- add_header X-XSS-Protection "1; mode=block" always;
- add_header Referrer-Policy "no-referrer-when-downgrade" always;
- add_header Content-Security-Policy "default-src 'self' https: data: 'unsafe-inline' 'unsafe-eval'" always;
- # Error pages
- error_page 404 /index.html;
- }
|