I have multiple project set
)WebApp_A
Django_A + ReactJs_A
)WebApp_B
Django_B + ReactJs_B
For now I am using apache for ReactJS_B and use nginx for Django_A
mydomain.com comes to Apache(ReactJS_A) and then localhost:8000(from ReactJS_A) comes to nginx(DJango_A)
So now I want to install WebApp_B in the same server.
How should I set ?
Plan 1)
Use the same setting and change the port 8000 -> 8001
mydomain2.com comes to Apache(ReactJS_B) and then localhost:8001(from ReactJS_B) comes to nginx(DJango_B)
Plan 2)
Basically, combination of apache and nginx for react and django is not good?? is there any alternative way??