Hi,
I modified the universe_wsgi.ini file as below, based on the FAQ input

# ---- HTTP Server ----------------------------------------------------------

[server:main]
use = egg:Paste#http
port = 8080
host = 127.0.0.1
use_threadpool = true
threadpool_workers = 10

# ---- Galaxy Web Interface -------------------------------------------------
#[app:main]
[composite:main]
use=egg:Paste#urlmap[[BR]] /galaxy/=galaxy
[app:galaxy]

# Specifies the factory for the universe WSGI application
paste.app_factory = galaxy.web.buildapp:app_factory
log_level = DEBUG
...rest same


However I get the following error:

LookupError: Entry point 'urlmap[[BR]] /galaxy/=galaxy' not found in egg 'Paste' (dir: /var/www/html/galaxy_dist/eggs/py2.5-noplatform/Paste-1.5.1-py2.5.egg; protocols: paste.app_factory, paste.composite_factory, paste.composit_factory; entry_points: )


What is wrong with my modification of universe_wsgi.ini

Thanks in anticiaption

Sm