On Fri, Mar 14, 2008 at 10:39 AM, Rebecca G. <[EMAIL PROTECTED]> wrote:
>
>  I must be somewhat of an idiot, I have been trying for days to figure out how
>  to make a linux install of Plone accessable at port 80 and not have to
>  specify /Plone to get to the site.
>
>  I simply want http://www.mysite.com to resolve to what I currently see at
>  /Plone

There are probably other ways, but I use repoze as described here:

  
http://plone.org/documentation/tutorial/install-plone-3-behind-apache-and-mod_wsgi-using-repoze/tutorial-all-pages

My apache config looks slightly different:

WSGIPythonHome ${sandbox}
WSGIDaemonProcess tmp threads=1 processes=4 maximum-requests=10000
python-path=${sandbox}/lib/python2.4/site-packages
<VirtualHost *:80>
  ServerName my.machine.local
  WSGIScriptAlias / ${sandbox}/bin/zope2.wsgi
  WSGIProcessGroup tmp
  WSGIPassAuthorization On
  SetEnv HTTP_X_VHM_HOST http://my.machine.local/
  SetEnv PASTE_CONFIG ${sandbox}/etc/zope2.ini
  SetEnv HTTP_X_VHM_ROOT /$(PLONE}
</VirtualHost>

See this article:

http://www.plope.org/Members/chrism/vhm_victory

-Dave

_______________________________________________
Setup mailing list
[email protected]
http://lists.plone.org/mailman/listinfo/setup

Reply via email to