Changes between Version 17 and Version 18 of InstallLenny


Ignore:
Timestamp:
11/08/08 21:16:28 (5 years ago)
Author:
denis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallLenny

    v17 v18  
    1961962008-11-04 12:40:37,584 INFO Making html template - original size of /opt/Plone-2.5.5/zeocluster/client1/var/files/Members/denis/videos/contre-feux_1.avi: 84.3MB, Encoded size: 27.2MB 
    1971972008-11-04 12:40:37,605 INFO Ending indytube... We checked 1 eligble files, converted 1 files 
    198  
    199 }}} 
    200  
    201  
    202 {{{ 
    203 Running Plumi behind an Apache2 web server 
    204 }}} 
     198}}} 
     199 
     200== Running Plumi behind an Apache2 web server == 
    205201 
    206202Read [http://plone.org/documentation/tutorial/plone-apache/tutorial-all-pages this]  
     
    257253}}} 
    258254 
     255- Modify the VirtualHost 
     256 
     257{{{ 
     258vi /etc/apache2/sites-enabled/plumi 
     259}}} 
     260 
     261Modify the section about plumi.domainepublic.net 
     262 
     263{{{ 
     264<VirtualHost 91.121.123.116:80> 
     265ServerName plumi.domainepublic.net 
     266ServerAdmin info@domainepublic.net 
     267DocumentRoot /var/www 
     268DirectoryIndex index.html index.htm index.shtml index.cgi index.php 
     269 
     270 
     271 
     272RewriteEngine On 
     273RewriteRule ^/(.*)$ http://plumi.domainepublic.net:8080/VirtualHostBase/http/plumi.domainepublic.net:80/test/VirtualHostRoot/$1 [L,P] 
     274ErrorLog /var/log/apache2/plumi.log 
     275LogLevel warn 
     276CustomLog /var/log/apache2/plumi.log combined 
     277 <IfModule mod_proxy.c> 
     278   ProxyVia On 
     279 
     280   # prevent the webserver from beeing used as proxy 
     281   <LocationMatch "^[^/]"> 
     282     Deny from all 
     283   </LocationMatch> 
     284 </IfModule> 
     285 
     286 
     287 # caching (disabled) 
     288 # this caches every file with the correct caching informations starting at / 
     289 <IfModule mod_disk_cache.c> 
     290   #CacheEnable disk / 
     291 </IfModule> 
     292 
     293 # compression (disabled) 
     294 <IfModule mod_deflate.c> 
     295   #SetOutputFilter DEFLATE 
     296 </IfModule> 
     297 
     298</VirtualHost> 
     299 
     300}}} 
     301 
     302Reload apache2 
     303 
     304{{{ 
     305/etc/init.d/apache2 force-reload 
     306}}} 
     307 
    259308 
    260309== Configuring ATCountryWidget ==