Having googl'd and read various faqs, cookbooks...

Site worked OK under CGI, but slowly -- on an old machine.

I have converted to mod_perl only using the Apache::Registry.  Application
uses CGI::App and HTML::Template.

Site runs faster now, but warnings disappeared from all logs.  [errors] show
up, but not warnings.

Any ideas on what I'm doing wrong?

Thanks, Eric.
 

httpd.conf
----------

LogLevel warn
PerlModule Apache::Registry
...

<VirtualHost _default_:443>
    DocumentRoot /var/www/pick6/
    ServerName www.yadda.com
    ServerAdmin [EMAIL PROTECTED]
    ErrorLog logs/error_log
    TransferLog logs/access_log
    ErrorLog /var/www/logs/pick6.error_log
    CustomLog /var/www/logs/pick6.access_log common
    Alias /perl/ /var/www/pick6/cgi-bin/
    ServerAlias yadda.com  *.yadda.com
    SSLEngine on
    SSLCertificateFile    /etc/ssl/server.crt
    SSLCertificateKeyFile /etc/ssl/private/server.key
    CustomLog logs/ssl_request_log \
    "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
</VirtualHost>     


Reply via email to