Hola ploneros(as) La presente es para consultar una duda que tengo:
Actualmente tengo un sitio con Plone 3.3.5 con un servidor Apache2 y tengo un VH para mi sitio con el modulo Rewrite y Proxy de la siguiente forma: <VirtualHost *:80> ServerAlias sitio.com ServerAdmin [email protected] ServerSignature On CustomLog /var/log/apache2/sitio_com-access.log combined ErrorLog /var/log/apache2/sitio_com.log LogLevel warn <IfModule mod_rewrite.c> RewriteEngine On # serving icons from apache 2 server RewriteRule ^/icons/ - [L] # rewrite any other access to the zope server using a proxy [P] and add the VMH magic keywords # use %{SERVER_NAME} instead of example.com to avoid busting the ServerAlias # %{HTTP_HOST} is bad because it may contain the port RewriteRule ^/(.*) \ http://localhost:8080/VirtualHostBase/http/%{SERVER_NAME}:80/cms/VirtualHostRoot/$1 [L,P] RewriteRule ^/manage/(.*) \ http://localhost:8080/VirtualHostBase/http/%{SERVER_NAME}:80/manage_main/VirtualHostRoot/$1 [L,P] </IfModule> <IfModule mod_proxy.c> ProxyVia On # prevent the webserver from beeing used as proxy <LocationMatch "^[^/]"> Deny from all </LocationMatch> </IfModule> # caching (disabled) # this caches every file with the correct caching informations starting at / <IfModule mod_mem_cache.c> # CacheEnable mem / </IfModule> # compression (disabled) <IfModule mod_deflate.c> SetOutputFilter DEFLATE </IfModule> </VirtualHost> La idea es que me gustaría acceder al Root Folder de ZMI de Zope y no de mi Plone La única forma que he podido hacer esto es des-habilitando la regla Rewrite ^/(.*) y para poder funcionar la regla ^/manage/(.*), pero me gustaría tener ambas reglas habilitadas Alguna idea? -- Atentamente T.S.U. Leonardo Caballero Linux Counter ID = http://counter.li.org/cgi-bin/runscript/display-person.cgi?user=369081 Key fingerprint = 9FD2 DC71 38E7 A1D1 57F5 1D29 04DE 43BC 8A27 424A /me Corriendo Debian Lenny 5.0 y Canaina GNU/Linux 2.0 /me Cree "El Conocimiento Humano le Pertenece al Mundo" _______________________________________________ Plone-ConoSur mailing list [email protected] http://lists.plone.org/mailman/listinfo/plone-conosur
