[rt-users] apache segfaults with 4.2

Marko Cupać marko.cupac at mimar.rs
Mon Dec 16 03:21:06 EST 2013


On Fri, 13 Dec 2013 10:40:52 -0500
Kevin Falcone <falcone at bestpractical.com> wrote:

> You didn't say how you're running RT under Apache.
I run rt42-4.2.1_2 on apache22-2.2.26 with ap22-mod_perl2-2.0.8,3.
I run it on virtual ssl-enabled host under /tiketing subdirectory.
Document root serves wordpress, there are also additional
subdirectories (phpmyadmin and racktables). There is no segfault
on restart  when I comment out rt-related sections. There were no
segfaults before upgrade to 4.2.

Here's relevant apache config:

<VirtualHost IP.ADD.RE.SS:80>
   ServerName server.example.com
   Redirect permanent / https://server.example.com/
</VirtualHost>

<VirtualHost IP.ADD.RE.SS:443>

   ServerName server.example.com
   DocumentRoot /usr/local/www/wordpress
   
   SSLEngine on
   SSLProtocol all -SSLv2
   SSLCipherSuite HIGH:MEDIUM
   SSLCertificateFile "/etc/ssl/certs/server.crt"
   SSLCertificateKeyFile "/etc/ssl/certs/server.key"

   <Directory "/usr/local/www/wordpress">
      Options FollowSymLinks
      AllowOverride All
      Order Allow,Deny
      Allow from all
   </Directory>

   Alias /dbadmin /usr/local/www/phpMyAdmin

   <Directory "/usr/local/www/phpMyAdmin">
      Options none
      AllowOverride Limit
      Order Allow,Deny
      Allow from all
   </Directory>

   Alias /tiketing /usr/local/share/rt42/html

   <Directory "/usr/local/share/rt42/html">
      Options FollowSymLinks
      AllowOverride All
      Order allow,deny
      Allow from all
   </Directory>

   <Location "/tiketing">
      AddDefaultCharset UTF-8
      SetHandler modperl
      PerlResponseHandler Plack::Handler::Apache2
      PerlSetVar psgi_app /usr/local/sbin/rt-server
   </Location>

   <Perl>
      use Plack::Handler::Apache2;
      Plack::Handler::Apache2->preload("/usr/local/sbin/rt-server");
   </Perl>

   Alias /racktables /usr/local/www/racktables/wwwroot

   <Directory "/usr/local/www/racktables/wwwroot">
      Options Indexes FollowSymlinks MultiViews
      AllowOverride Limit
      Order Allow,Deny
      Allow from all
   </Directory>


</VirtualHost>


-- 
Marko Cupać



More information about the rt-users mailing list