# SwiftShare .htaccess - for cPanel shared hosting
# Option A: If using Node.js App in cPanel, this isn't needed
# Option B: If serving static files only (not recommended for full app)

# Redirect to Node.js port if using reverse proxy
# RewriteEngine On
# RewriteRule ^(.*)$ http://localhost:3000/$1 [P,L]

# Cache static assets
<IfModule mod_expires.c>
  ExpiresActive On
  ExpiresByType text/css "access plus 1 week"
  ExpiresByType application/javascript "access plus 1 week"
  ExpiresByType image/svg+xml "access plus 1 month"
</IfModule>
