* Trac [#hf069f5b] #contents &tag(Trac); * 関連 [#g7d00d3a] #ls2 * [[MacOSX/Lion]] [#kdbbcc66] - MacOSX 10.7.1 + mod_fcgidをインストール -- http://httpd.apache.org/mod_fcgid/ $ cd mod_fcgid-2.3.6 $ ./configure.apxs $ make $ sudo make install + [[Apache]]設定:/private/etc/apache2/httpd.conf へ追記 LoadModule fcgid_module libexec/apache2/mod_fcgid.so + [[Apache]]設定:/private/etc/apache2/other/trac.conf へ追記 ScriptAlias /trac /Library/WebServer/CGI-Executables/trac.fcgi/ <Location /trac> SetEnv TRAC_ENV_PARENT_DIR "/Users/foo/data/trac/" Order deny,allow Deny from all allow from 127.0.0.1 allow from localhost </Location> <LocationMatch "/trac/[^/]+/login"> AuthType Basic AuthName "Trac Project" AuthUserFile /Users/foo/data/trac/users Require valid-user </LocationMatch>