Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Need some SSL certificate help #364587
    ryan
    Participant

    i hate to be one of THOSE people, but i gave up on the GUI interface a long time ago and resorted to learning to edit the config file by hand. if this doesnt intimidate you, i did something like this..

    i loaded the certs and requests into a directory for each server:
    /etc/httpd/certs/mydomain.com

    then edit the the config file:
    /etc/httpd/sites/0001_192.168.1.2_443_mydomain.com.conf

    SSLCertificateChainFile “/etc/httpd/certs/mydomain.com/ComodoSecurityServicesCA.crt”
    SSLCertificateFile “/etc/httpd/certs/mydomain.com/server.crt”
    SSLCertificateKeyFile “/etc/httpd/certs/mydomain.com/server.key”

    does that help?

    in reply to: Rewrite #364585
    ryan
    Participant

    try putting this in your /etc/httpd/sites/ file:
    RewriteCond %{HTTP_HOST} ^mail\.domain\.com
    RewriteRule ^(.*)$ http://domain.com/mail$1 [R,L]

    under the rewrite section (if you have one, create one), eg:
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_METHOD} ^TRACE
    RewriteRule .* – [F]

    RewriteCond %{HTTP_HOST} ^mail\.domain\.com
    RewriteRule ^(.*)$ http://domain.com/mail$1 [R,L]
    </IfModule>

    then you also need to make sure that the rewrite module is
    enabled in your /etc/httpd/httpd.conf file:
    LoadModule rewrite_module libexec/httpd/mod_rewrite.so

    (and then restart your web server.)

    in reply to: Need some SSL certificate help #364583
    ryan
    Participant

    try this:
    “> openssl pkcs7 -in public.cer -print_certs -out certs.pem
    then use the certificates in ‘certs.pem’ for the server.”

    a little looking in google groups will usually get you your answer:
    http://groups.google.com/group/mailing.openssl.users/msg/0d7efe88c4fcaa8b

    in reply to: Has Anyone Upgraded to PHP5? #364578
    ryan
    Participant

    absolutely.

    i am a big fan of the entropy packages:
    http://www.entropy.ch/software/macosx/php/

    and even compiling 5.1.1 by hand works no problem with the /opt/apache2 (i have not tried it with the 1.3 install) under 10.3.8.

    and yes, i think that 5.1.1 is faster than the 5.0.x releases.

Viewing 4 posts - 1 through 4 (of 4 total)