Modify ↓
Opened 17 years ago
Last modified 4 years ago
#4027 new enhancement
Additional parameters --protocol and --base-path
| Reported by: | anonymous | Owned by: | Florent |
|---|---|---|---|
| Priority: | normal | Component: | WindowsServiceScript |
| Severity: | normal | Keywords: | ajp |
| Cc: | Trac Release: | 0.11 |
Description
I want to start the trac-service in "ajp-mode" How I can set up the parameters reqired parameters --protocol=ajp and --base-path=trac tracservice.py?
Attachments (0)
Note: See
TracTickets for help on using
tickets.



If you modify the OPTS value in the script, it should be ok. (starting from line 48)
OPTS = [ ( '--auth', ('trac,%s\conf\htdigest,TracRealm' % INSTANCE_HOME) ), ( '--port', '80' ), ( '--protocol', 'ajp' ), ( '--base-path', '/trac' ), ]