Skip to content

Instantly share code, notes, and snippets.

@svasva
Last active December 14, 2015 02:28
Show Gist options
  • Save svasva/5013406 to your computer and use it in GitHub Desktop.
Save svasva/5013406 to your computer and use it in GitHub Desktop.
server {
root /var/www/bikecheck-alpha/static;
server_name alpha.bikecheck.ru;
location @static_cacheable {
root /var/www/bikecheck-alpha/static_cacheable;
}
location / {
try_files $uri @static_cacheable @node;
}
location @node {
proxy_pass http://127.0.0.1:3033;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment