Plone with Apache Proxy

前端 未结 3 1206
-上瘾入骨i
-上瘾入骨i 2021-01-25 00:26

I have a plone zinstance set up through Apache Proxy on OS X Server 10.5. The server is set up with a single vhost on port 80, with Proxy & Proxypass directives to the Plon

3条回答
  •  花落未央
    2021-01-25 00:50

    Set up a static URL that will not be proxied but served from Apache directly, like this:

    ProxyPass /static !
    ProxyPass / http://localhost:8080/VirtualHostBase/http/server:80/Plone/VirtualHostRoot/
    ProxyPassReverse / http://localhost:8080/VirtualHostBase/http/server:80/Plone/VirtualHostRoot/
    

    Then configure /static to contain your static content.

提交回复
热议问题