Forum Replies Created
-
AuthorPosts
-
ryan
Participanti 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.comthen edit the the config file:
/etc/httpd/sites/0001_192.168.1.2_443_mydomain.com.confSSLCertificateChainFile “/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?
ryan
Participanttry 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.)
ryan
Participanttry 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/0d7efe88c4fcaa8bryan
Participantabsolutely.
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.
-
AuthorPosts
Recent Comments