Skip to content

Instantly share code, notes, and snippets.

@thiagosf
Created March 24, 2020 13:45
Show Gist options
  • Save thiagosf/9cde5928bf158b866d4c487cf997dfa2 to your computer and use it in GitHub Desktop.
Save thiagosf/9cde5928bf158b866d4c487cf997dfa2 to your computer and use it in GitHub Desktop.
Multiple react/vue apps into nginx
# the magic happens here: =404
server {
server_name domain.com;
index index.html;
location /projec1 {
alias /var/www/projec1;
try_files $uri $uri/ /index.html =404;
}
location /projec2 {
alias /var/www/projec2;
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