Changes between Version 2 and Version 3 of TracWsgiPlugin


Ignore:
Timestamp:
Apr 1, 2007, 6:18:23 PM (17 years ago)
Author:
martinpaljak
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracWsgiPlugin

    v2 v3  
    2525== Example ==
    2626
    27 In a Paste deploy script, to run Trac:
     27To run Trac with Paste, put into a PasteDeploy script:
    2828{{{
    2929[app:main]
    30 use = egg:TracWsgiPlugin#trac
    31 path = /path/to/trac/env
     30use = egg:WSGITrac#trac
     31path = /path/to/your/trac/env
    3232}}}
    3333
    34 In trac.ini, to run some other app:
     34To run 'myapp' on http://example.com/trac/something and 'thirdapp' on /trac/foobar, put into your trac.ini file:
    3535{{{
    3636[webapps]
    3737something = myapp
    38 #something = config:/path/to/some/paste.ini
     38foobar = config:/path/to/some/paste.ini#thirdapp
    3939[app:myapp]
    4040use = egg:YourEgg#yourapp
    4141}}}
    42 Now http://your.host/your/trac/something runs myapp
    43 
    4442
    4543== Recent Changes ==