Created
October 29, 2018 12:19
-
-
Save manekinekko/44896e8e822ff6869c4796e2857294e6 to your computer and use it in GitHub Desktop.
Google Cloud Build config file for xlayers.app (CI only) — nginx.conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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