Apache & Tomcat: ProxyPass and ProxyPassReverse

后端 未结 7 1898
眼角桃花
眼角桃花 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:02

    Try this:

    ProxyPass /prueba/ http://localhost:8009/prueba/
    ProxyPassReverse /prueba/ http://localhost:8009/prueba/
    

    and then hit the following URL from browser: http:// localhost/prueba/

    note: it is mandatory to add "/prueba/"

提交回复
热议问题