Skip to content

Instantly share code, notes, and snippets.

@manekinekko
Created October 29, 2018 12:19
Show Gist options
  • Save manekinekko/44896e8e822ff6869c4796e2857294e6 to your computer and use it in GitHub Desktop.
Save manekinekko/44896e8e822ff6869c4796e2857294e6 to your computer and use it in GitHub Desktop.
Google Cloud Build config file for xlayers.app (CI only) — nginx.conf
server {
listen 80;
charset utf-8;
sendfile on;
root /usr/share/nginx/html;
location / {
expires -1;
add_header Pragma "no-cache";
add_header Cache-Control "no-store, no-cache, must-revalidate, post-check=0, pre-check=0";
try_files $uri $uri/ /index.html = 404;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment