Hi,

I am running pylons web application using apache. i.e
<VirtualHost *:80>
        ServerSignature serversignature
        ServerName sname.com
        ProxyPass / http://localhost:50/
        ProxyPassReverse / http://localhost:50/
</VirtualHost>

How can i run wordpress with this setup?

I tried this two setups but both are not working not working.

1:
<VirtualHost *:80>
        ServerSignature serversignature
        ServerName sname.com
        <Directory "/usr/local/www/wordpress">
               DirectoryIndex index.php index.pl index.cgi index.htm
index.html
               AllowOverride All
               Allow from all
               Order allow,deny
        </Directory>
        ProxyPass / http://localhost:50/
        ProxyPassReverse / http://localhost:50/
</VirtualHost>
2:
<VirtualHost *:80>
        ServerSignature serversignature
        ServerName sname.com
        DirectoryIndex index.php index.pl index.cgi index.htm
index.html
        Alias /blog "/usr/local/www/wordpress"
        <LocationMatch /(blog|weblog).*>
          ProxyPass  http://127.0.0.1:82/
          ProxyPassReverse http://127.0.0.1:82/
        </LocationMatch>
        ProxyPass / http://localhost:50/
        ProxyPassReverse / http://localhost:50/
</VirtualHost>

Please can any body advice some good solution on this.

Thanks


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to pylons-discuss@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to