Changes between Version 4 and Version 5 of boggs
- Timestamp:
- Mar 2, 2014, 5:29:14 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
boggs
v4 v5 7 7 {{{ 8 8 # This file was created by Red. Best not to modify 9 # by hand unless you know what you're doing. 9 # by hand unless you know what you're doing--- going for it! 10 # These modules must be enabled : rewrite, fcgid 11 # (mod_fastcgi is much harder to configure) 10 12 <VirtualHost *:80> 11 13 # web config for projects.occupytechnology.org 12 14 ServerName projects.occupytechnology.org 13 15 ServerAlias www.projects.occupytechnology.org ctprojects.mayfirst.org projects.occupy.net 14 # DocumentRoot /home/members/ocutech/sites/projects.occupytechnology.org/web15 CustomLog /home/members/ocutech/sites/projects.occupytechnology.org/logs/web.log combined16 ErrorLog /home/members/ocutech/sites/projects.occupytechnology.org/logs/error.log17 ScriptAlias /cgi-bin /home/members/ocutech/sites/projects.occupytechnology.org/cgi-bin18 19 # FCGIWrapper /home/members/ocutech/sites/projects.occupytechnology.org/bin/php-cgi .php20 SuexecUserGroup ctprojects ctprojects21 22 16 # FcgidInitialEnv for module mod_fcgid 23 # These enviroment variables appear to be ignored by ruby, so these are also set in24 # the relevant config/enviroment.rb file25 17 FcgidInitialEnv RAILS_RELATIVE_URL_ROOT "" 26 18 FcgidInitialEnv X_DEBIAN_SITEID "default" 27 FcgidInitialEnv RAILS_ETC "/home/members/ocutech/sites/projects.occupytechnology.org/include/redmine/config" 28 FcgidInitialEnv RAILS_LOG "/home/members/ocutech/sites/projects.occupytechnology.org/include/redmine/log" 29 FcgidInitialEnv RAILS_VAR "/home/members/ocutech/sites/projects.occupytechnology.org/include/redmine" 30 FcgidInitialEnv RAILS_CACHE "/home/members/ocutech/sites/projects.occupytechnology.org/include/redmine/tmp" 31 FcgidInitialEnv RAILS_ENV "production" 19 FcgidMaxRequestLen 20971520 32 20 33 21 Alias "/plugin_assets/" /var/cache/redmine/default/plugin_assets/ … … 48 36 RewriteRule ^(.*)$ dispatch.fcgi [QSA,L] 49 37 </Directory> 38 39 ErrorLog /home/members/ocutech/sites/projects.occupytechnology.org/logs/error.log 40 41 # Possible values include: debug, info, notice, warn, error, crit, 42 # alert, emerg. 43 LogLevel warn 44 45 CustomLog /home/members/ocutech/sites/projects.occupytechnology.org/logs/web.log combined 46 ScriptAlias /cgi-bin /home/members/ocutech/sites/projects.occupytechnology.org/cgi-bin 47 SuexecUserGroup ctprojects ctprojects 50 48 </VirtualHost> 51 49 }}} … … 54 52 55 53 56 Required:57 58 {{{59 gem install i18n -v=0.4.260 }}}