Skip to content

Instantly share code, notes, and snippets.

@deathbearbrown
Last active September 22, 2015 21:12
Show Gist options
  • Save deathbearbrown/5fa53e4bad9ce7a80e42 to your computer and use it in GitHub Desktop.
Save deathbearbrown/5fa53e4bad9ce7a80e42 to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name stage-fundraising.audienceengine.net;
index index.html;
location /admin {
root /mnt/www/admin/dist;
try_files $uri $uri/ /admin/index.html;
}
location / {
root /mnt/www/client/dist;
try_files $uri $uri/ /index.html;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment