Edgewall Software

Changes between Version 88 and Version 89 of TracModPython


Ignore:
Timestamp:
Nov 23, 2006, 10:30:24 PM (17 years ago)
Author:
anonymous
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracModPython

    v88 v89  
    179179</Location>
    180180}}}
     181
     182=== HTTPS issues ===
     183
     184If you want to run Trac fully under https you might find that it tries to redirect to plain http. In this case just add the following line to your apache configuration:
     185{{{
     186<VirtualHost * >
     187    DocumentRoot /var/trac/myproject
     188    ServerName trac.mycompany.com
     189    SetEnv HTTPS 1
     190    ....
     191</VirtualHost>
     192}}}
     193
    181194Note: For the above configuration to have any effect it must be put after the configuration of your project root location, i.e. {{{<Location /myproject />}}}.
    182195----
    183196See also TracGuide, TracInstall, TracCgi, TracFastCgi
    184