server {
listen 80;
server_name cms.prafulbhuskute.com/a;
location / {
proxy_pass http://localhost:3001;
}
}
server {
listen 80;
server_name api.prafulbhuskute.co;
location / {
proxy_pass http://localhost:3000;
}
}
server {
listen 80;
server_name cms.prafulbhuskute.cmo;
location / {
root "C:/nginx/html/build";
try_files $uri $uri / index.html;
}
}