NGINX Run multiple application on same port with different route path
问题 I have two applications, app1 is developed in reactJS and app2 in angularJS sharing same login session, - Application 1 http://application-1:1234/ - APplication 2 http://application-2:2345/ My needs is to have a seemless navigation between both apps, as they share the same login credentials. I have created NGINX reverse proxy configuration, server { listen 8080; server_name http://global-ip:8080; location / { proxy_pass http://application-1:1234; proxy_http_version 1.1; proxy_set_header