server {
listen 80;
root html/build/;
location / {
rewrite ^ /index.html break;
}
location = /CRMAccounts/ {
proxy_pass http://localhost:4200/CRMAccounts/;
}
location /CRM/ {
proxy_pass http://localhost:4200/CRM/;
}
}