Skip to content

Instantly share code, notes, and snippets.

@admhpr
Created September 2, 2019 20:31
Show Gist options
  • Save admhpr/772b8d6101527d68e23fcfbbdc75d937 to your computer and use it in GitHub Desktop.
Save admhpr/772b8d6101527d68e23fcfbbdc75d937 to your computer and use it in GitHub Desktop.
location blocks
server {
listen 80;
set $root /var/www;
server_name localhost;
location = / {
alias $root/app1/;
try_files $uri /index.html;
}
location ^~ /app1 {
alias $root/app1/;
try_files $uri $uri/ /index.html;
}
location ~* /(\w+) {
alias $root/app2/;
try_files $uri $uri/ /index.html;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment