Apache & Tomcat: ProxyPass and ProxyPassReverse

后端 未结 7 1982
眼角桃花
眼角桃花 2021-01-31 20:44

I\'am having troubles configuring Apache and Tomcat, this is the scenario:

I have an Apache Web Server, running and working normally, I can access to this one just typin

7条回答
  •  情深已故
    2021-01-31 21:26

    Port 8009 is Tomcat so use ajp instead of http

    ProxyPass /prueba/ ajp://localhost:8009/prueba/
    ProxyPassReverse /prueba/ ajp://localhost:8009/prueba/
    

提交回复
热议问题