I have three applications running, 2 on local machine/server where Apache is installed and 1 on a different machine/server. I am using Apache2.4 on Ubuntu 18.04
application 1(yii) = 127.0.0.1:80 application 2(mantis bt) = 127.0.0.1:8080 application 3(yii) = 192.168.X.X:80 I want to configure my apache web server to host the three applications on https. I proxy pass both app2 and app3.
app2 = /app2 http://127.0.0.1:8080 app3 = /app3 http://192.168.X.X app1 can be accessed successfully without error, app2 and app3 can be accessed but .css, .js and other files cannot be found and error 404.
Note: I can access all three apps when not on proxy pass.
also it is possible to host the three apps and have a url like the following:
https://app1.example https://app2.example https://app2.example
I am new to apache. Please help me.