Changeset 7104


Ignore:
Timestamp:
08/23/12 09:29:10 (12 years ago)
Author:
wmerlotto
Message:

Ticket #2889 - Complementando correções no virtual host, ssl, do apache e no cron

Location:
trunk/INSTALL
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/INSTALL/arquivos/expresso-cron

    r6173 r7104  
    1717#DEBIAN00 22    * * *   www-data        php5    EXPRESSO_DIR/phpgwapi/cron/clean_phpgw_tables.php 
    1818 
     19# Utilizado para limpar os arquivos de sessao do PHP 
     20#*/31 *  * * *   root                    find /dev/shm -type f -name "sess_*" -cmin 240 -print0 | xargs -n 200 -r -0 rm 
     21 
     22 
  • trunk/INSTALL/debian/squeeze/etc/apache2/sites-available/expresso

    r6615 r7104  
    5656 
    5757        DocumentRoot /var/www/expresso/ 
    58          
     58 
    5959        <Directory /var/www/expresso/> 
    6060                Options FollowSymLinks MultiViews 
    61                 AllowOverride None 
     61                AllowOverride All 
    6262                Order allow,deny 
    6363                allow from all 
  • trunk/INSTALL/rhel/6/etc/httpd/conf.d/ssl.conf

    r5797 r7104  
    8080 
    8181<VirtualHost _default_:443> 
    82 DocumentRoot "/var/www/html/expresso" 
    8382#ServerName www.example.com:443 
     83 
     84    DocumentRoot "/var/www/html/expresso" 
     85    <Directory /var/www/html/expresso/> 
     86        Options FollowSymLinks MultiViews 
     87        # Para permitir o uso do .htaccess 
     88        AllowOverride All 
     89        Order allow,deny 
     90        allow from all 
     91    </Directory> 
    8492 
    8593#   SSL Engine Switch: 
Note: See TracChangeset for help on using the changeset viewer.