Edgewall Software

Changes between Version 43 and Version 44 of 1.1/TracInstall


Ignore:
Timestamp:
Sep 23, 2015, 7:59:55 PM (9 years ago)
Author:
Ryan J Ollos
Comment:

Merged TracInstall@422, TracInstall@423, TracInstall@424.

Legend:

Unmodified
Added
Removed
Modified
  • 1.1/TracInstall

    v43 v44  
    269269Trac provides various options for connecting to a "real" web server:
    270270 - [TracFastCgi FastCGI]
    271  - [wiki:TracModWSGI mod_wsgi]
    272  - [TracModPython mod_python]
     271 - [wiki:TracModWSGI Apache with mod_wsgi]
     272 - [TracModPython Apache with mod_python]
    273273 - //[TracCgi CGI] (should not be used, as the performance is far from optimal)//
    274274
     
    317317
    318318<Directory "/path/to/www/trac/htdocs">
    319   Order allow,deny
    320   Allow from all
     319  # For Apache 2.2
     320  <IfModule !mod_authz_core.c>
     321    Order allow,deny
     322    Allow from all
     323  </IfModule>
     324  # For Apache 2.4
     325  <IfModule mod_authz_core.c>
     326    Require all granted
     327  </IfModule>
    321328</Directory>
    322329}}}
     
    336343
    337344<Directory "/path/to/projectenv/htdocs">
    338   Order allow,deny
    339   Allow from all
     345  # For Apache 2.2
     346  <IfModule !mod_authz_core.c>
     347    Order allow,deny
     348    Allow from all
     349  </IfModule>
     350  # For Apache 2.4
     351  <IfModule mod_authz_core.c>
     352    Require all granted
     353  </IfModule>
    340354</Directory>
    341355}}}