Bertrand,
I am using Apache 2.0.52 and have made the following amendments:

1. create a certificate file : /library/Apache2/conf/mysiteNew.crt
2. create a key file: /library/Apache2/conf/www.mysite.com.key
3. Amend the ssl.conf file:

<IfDefine SSL>
<VirtualHost 127.0.0.1:443>
......
SSLCertificateFile /Library/Apache2/conf/mysiteNew.crt
SSLCertificateKeyFile /Library/Apache2/conf/www.mysite.com.key

****** Start Note  ***
RewriteEngine on

RewriteRule "^/WEB-INF/?(.*)" "$0" [L,F,NC]
RewriteRule "^/(.*)\.gif$" "$0" [L]
RewriteRule "^/(.*)\.jpg$" "$0" [L]
RewriteRule "^/(.*)\.swf$" "$0" [L]
RewriteRule "^/(.*)\.php$" "$0" [L]
RewriteRule "^/(.*)\.m3u$" "$0" [L]
RewriteRule "^/(.*)\.mp3$" "$0" [L]
RewriteRule "^/(.*)\.html$" "$0" [L]
RewriteRule (.*)\.(js|css|xml|xsl|kont|jx|xsp|svg)$ http://localhost:8080/mysite/$1.$2 [P,L]
RewriteRule "^/(.*)" "http://localhost:8080/$1"; [P]
ProxyPassReverse / http://localhost:8080/
***End Note ***
</virtualHost>
</IfDefine>

Suffice to say, when I enter https://www.mysite.com into the url I get 'the connection was refused when attempting to contact www.mysite.com'. What am I doing wrong???

many thanks

Andrew


Attachment: httpd.conf
Description: Binary data

Attachment: ssl.conf
Description: Binary data



p.s. I have enabled port 443 in the firewall as well.
On 30 Nov 2004, at 19:04, Bertrand Delacretaz wrote:

...How would I, in this instance, be able to do what you recommended? Bare with me if this seems fairly obvious as I have never worked with https before...

My setup is a bit different, I have documented it at http://wiki.apache.org/cocoon/ApacheModProxySsl

I haven't explained the basic SSL configuration of the Apache web server, but there are plenty of docs floating around for this.

-Bertrand



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to