events { worker_connections 768; } http { server { listen 80; root /app; location / { try_files $uri $uri/ =404; } location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ { expires 1y; log_not_found off; } } }