UNPKG

@fairmint/canton-node-sdk

Version:
23 lines (18 loc) 539 B
server { listen 8080; root /usr/share/nginx/html; # Disable caching by default (covers index.html, config.js) add_header Cache-Control "no-store"; # Enable gzip compression gzip on; gzip_types text/html text/css application/javascript; location / { index index.html index.htm; try_files $uri $uri/ /index.html; } location /assets { # Explicitly enable long-term cache for generated assets w/ content hashes add_header Cache-Control "public"; expires 1y; } }