Created
September 2, 2019 20:31
-
-
Save admhpr/772b8d6101527d68e23fcfbbdc75d937 to your computer and use it in GitHub Desktop.
location blocks
This file contains 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; | |
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