Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Calibre Companion

Notices

Reply
 
Thread Tools Search this Thread
Old 04-01-2014, 01:56 PM   #1
coleman
Connoisseur
coleman began at the beginning.
 
Posts: 95
Karma: 38
Join Date: Jul 2007
Device: Android tablets and phones, Windows tablet, Kobo Aura One
Does CC support SSL connection?

I have Calibre running behind SSL encryption. Is CC able to support that? I can't get it to connect successfully that way so far.

Thanks!
coleman is offline   Reply With Quote
Old 04-02-2014, 05:19 AM   #2
chaley
Grand Sorcerer
chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.
 
Posts: 12,444
Karma: 8012886
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
Quote:
Originally Posted by coleman View Post
I have Calibre running behind SSL encryption. Is CC able to support that? I can't get it to connect successfully that way so far.

Thanks!
It works for me. I have an official certificate and I am running calibre behind apache as a reverse proxy. Apache deals with authentication.

My guess is that a self-signed certificate won't work. We added nothing to CC to allow certificate verification failure exceptions and I don't recall anything in Android settings that would deal with that.
chaley is offline   Reply With Quote
Advert
Old 04-02-2014, 07:15 AM   #3
coleman
Connoisseur
coleman began at the beginning.
 
Posts: 95
Karma: 38
Join Date: Jul 2007
Device: Android tablets and phones, Windows tablet, Kobo Aura One
Quote:
Originally Posted by chaley View Post
It works for me. I have an official certificate and I am running calibre behind apache as a reverse proxy. Apache deals with authentication.

My guess is that a self-signed certificate won't work. We added nothing to CC to allow certificate verification failure exceptions and I don't recall anything in Android settings that would deal with that.
I have a Comodo cert, with an IIS reverse proxy, so I don't think it's the cert. I'll keep fiddling with it. Do you use the complete URL checkbox, with https, or just leave that unchecked but specify port 443? Or do you specify port 443 and https?

Thanks!
coleman is offline   Reply With Quote
Old 04-02-2014, 07:42 AM   #4
chaley
Grand Sorcerer
chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.
 
Posts: 12,444
Karma: 8012886
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
I use "complete URL", which for me is required because my library is inside the SSL domain (https://my.domain.org/library). However, I am not convinced that machine/port specification would work even without the /library. CC makes no effort to intuit the protocol from the port. It does, however, intuit the port from the protocol, which is how it knows what to do when it sees https.

I start the calibre content server with the argument "--url-prefix library".

Just in case it might be helpful, here is my apache2 config for SSL connections to the library. I left out all the cruft to set up the certs.
Code:
# Ebook Library CALIBRE https
       <Location "/library">
               AuthType Digest
               AuthName "Library"
               AuthDigestDomain /

               AuthDigestProvider file
               AuthUserFile ......./library_digest_pw.txt
               Require valid-user
       </Location>
       RewriteEngine on
       RewriteRule ^/library/(.*) http://127.0.0.1:9192/library/$1 [proxy]
       RewriteRule ^/library http://127.0.0.1:9192 [proxy]

       SetEnv force-proxy-request-1.0 1
       SetEnv proxy-nokeepalive 1
and for completeness the arguments for calibre server
Code:
DAEMON_ARGS="--with-library $CONTENT --pidfile=$PIDFILE --daemonize -p 9192 --max-opds-ungrouped-items=200 --url-prefix /library"
chaley is offline   Reply With Quote
Old 04-03-2014, 12:38 AM   #5
coleman
Connoisseur
coleman began at the beginning.
 
Posts: 95
Karma: 38
Join Date: Jul 2007
Device: Android tablets and phones, Windows tablet, Kobo Aura One
Hmm so I'm not well versed in Java, but it seems like something is not happy about my cert. I don't have any issues using Chrome, Firefox, or the Android browser when going to my site though.

I checked the log and did some googling, which led me to validate I have a complete cert chain, which I do, so I'm not sure what's happening. I think this is the relevant part of the log:
Code:
2014-04-01 13:53:31.000:  ContentServer: creating connection to https://mysite.myurl.com
2014-04-01 13:53:31.186:  Error decrypting. Probably using wrong key.
2014-04-01 13:53:31.187:  Error decrypting. Probably using wrong key.
2014-04-01 13:53:31.187:  Error decrypting. Probably using wrong key.
2014-04-01 13:53:31.188:  Error decrypting. Probably using wrong key.
2014-04-01 13:53:31.189:  Error decrypting. Probably using wrong key.
2014-04-01 13:53:31.189:  Error decrypting. Probably using wrong key.
2014-04-01 13:53:31.190:  Error decrypting. Probably using wrong key.
2014-04-01 13:53:31.191:  ContentServer: checking authentication
2014-04-01 13:53:31.277:  Exception in OnContentServerFound: probably connection failed because CS not running
javax.net.ssl.SSLPeerUnverifiedException: No peer certificate
	at com.android.org.conscrypt.SSLSessionImpl.getPeerCertificates(SSLSessionImpl.java:146)
I did notice Firefox does actually warn about my site not being completely encryped, but I believe that is because Calibre loads an icon from calibre-ebook.com over http.

Any ideas?

Thanks!
coleman is offline   Reply With Quote
Advert
Old 04-03-2014, 01:58 AM   #6
chaley
Grand Sorcerer
chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.
 
Posts: 12,444
Karma: 8012886
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
The "error decrypting" messages come from inside CC. It stores passwords encrypted using some bits and pieces of the site. It can't successfully encrypt the password until it connects. You can ignore these messages.

The important message is that last one. It is saying that the networking code is unable to verify the certificate. CC uses strict verification, which means that the cert chain must be available and that the host name in the URL must exactly match the host name in the cert.

It sounds as if you have checked using the identical URL from chrome on the device, which is confusing. If it works, then either the cert chain is available or the intermediate certificates are stored in chrome's cert store (which would be unusual). It also might imply that either chrome is not doing hostname verification or that an exception was allowed at some point in the past. Not doing hostname verification creates a *huge* security hole so I would be surprised if it does it, but I don't really know either way.

Do verify that the certificate chain is available in your server. I also use a Comodo (positiveSSL) cert, and to make mine work I had to give apache a "bundle" of certs that form the chain from mine to the root cert. There are three certs in that bundle, none of which are my site cert. They are, in the order they appear:
AddTrustExternalCARoot.crt
PositiveSSLCA2.crt
UTN-USERFirst-Hardware.crt
I don't remember exactly why I had to add the last one (a root cert), but IIRC it didn't work universally until I did.

Have you done something similar with IIS? Looking at the link https://www.onestepssl.com/install_iis5_ssl.php it seems that similar steps are required.

There is another possibility that is hard to check: CC currently is built with Apache's HttpClient 4.2.1, which is out of date. The latest available is 4.3.1. The possibility is that some bugs were fixes in the later releases. I consider this improbable, but not impossible. In any event, during the next prerelease cycle I will update the library. Of course, that doesn't help you now.
chaley is offline   Reply With Quote
Old 04-03-2014, 03:34 AM   #7
chaley
Grand Sorcerer
chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.
 
Posts: 12,444
Karma: 8012886
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
Quote:
Originally Posted by coleman View Post
I did notice Firefox does actually warn about my site not being completely encryped, but I believe that is because Calibre loads an icon from calibre-ebook.com over http.
Thinking more about this, I realized that I do not get that warning from firefox. That makes me think that perhaps your reverse proxy is not completely filtering links. Alternatively you are using an old version of the calibre content server that did not completely encapsulate content.

To be sure that I hadn't overridden something in the past, I turned on http header capture in firefox (live HTTP headers) and connected to my SSL-hosted library. There were only two http:// requests, both to the verisign certificate revocation authority (evsecure-ocsp.verisign.com). All of the images were served through the reverse proxy using https.

My server is on a VPS in the US running Debian Wheezy. I connected to this server using Firefox. An elided version of the captured headers is under the spoiler.
Spoiler:

https://my.domain.org/

GET / HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/", algorithm=MD5, response="f4820f012cde3ef1ee5331af10b7de73", qop=auth, nc=0000001c, cnonce="e7454be76242c49e"
Connection: keep-alive
If-Modified-Since: Wed, 02 Apr 2014 15:56:32 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:34 GMT
Server: calibre/1.30.0
Last-Modified: Wed, 02 Apr 2014 15:56:32 GMT
Content-Type: text/html;charset=utf-8
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 1941
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/static/browse/browse.css

GET /static/browse/browse.css HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/static/browse/browse.css", algorithm=MD5, response="54442c5806fed3c8030ce4db509f121f", qop=auth, nc=0000001d, cnonce="a58d75c1846ba9cd"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:34 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Type: text/css;charset=utf-8
Vary: Accept-Encoding
Content-Encoding: gzip
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
Transfer-Encoding: chunked
----------------------------------------------------------
https://my.domain.org/static/jquery.multiselect.min.js

GET /static/jquery.multiselect.min.js HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/static/jquery.multiselect.min.js", algorithm=MD5, response="68417a32696411c969089bdcd0763c40", qop=auth, nc=00000023, cnonce="eeb3913944683ee1"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:34 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Type: text/javascript;charset=utf-8
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 3111
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/static/stacktrace.js

GET /static/stacktrace.js HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/static/stacktrace.js", algorithm=MD5, response="5fbd67c876ddd330b2e79664ac8ccf81", qop=auth, nc=00000024, cnonce="37e6a92531a8eb46"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:34 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Type: text/javascript;charset=utf-8
Vary: Accept-Encoding
Content-Encoding: gzip
Keep-Alive: timeout=15, max=97
Connection: Keep-Alive
Transfer-Encoding: chunked
----------------------------------------------------------
https://my.domain.org/static/jquery.multiselect.css

GET /static/jquery.multiselect.css HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/static/jquery.multiselect.css", algorithm=MD5, response="1c0f3ae1d1be6e08d4bf9a21982ffc3f", qop=auth, nc=0000001f, cnonce="6521bae76ae8c24b"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:34 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Type: text/css;charset=utf-8
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 497
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/static/jquery_ui/css/humanity-custom/jquery-ui-1.8.5.custom.css

GET /static/jquery_ui/css/humanity-custom/jquery-ui-1.8.5.custom.css HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/static/jquery_ui/css/humanity-custom/jquery-ui-1.8.5.custom.css", algorithm=MD5, response="de3e791d372cd44cbd487ac5ea268d6f", qop=auth, nc=0000001e, cnonce="a644ce698cc740c0"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:34 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Type: text/css;charset=utf-8
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 4639
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/static/browse/browse.js

GET /static/browse/browse.js HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/static/browse/browse.js", algorithm=MD5, response="71b031680edfc7dafb11c42ca15539f5", qop=auth, nc=00000025, cnonce="d74ee3a25b096d98"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:34 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Type: text/javascript;charset=utf-8
Vary: Accept-Encoding
Content-Encoding: gzip
Keep-Alive: timeout=15, max=96
Connection: Keep-Alive
Transfer-Encoding: chunked
----------------------------------------------------------
https://my.domain.org/static/jquery.js

GET /static/jquery.js HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/static/jquery.js", algorithm=MD5, response="3b70de2e9531f4e51e21c147216fbecc", qop=auth, nc=00000020, cnonce="b4b3aa1bd9c63c0d"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:35 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Type: text/javascript;charset=utf-8
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 46068
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/static/jquery.corner.js

GET /static/jquery.corner.js HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/static/jquery.corner.js", algorithm=MD5, response="84268a15b4ed4eac9fd1a10a7ec1e694", qop=auth, nc=00000021, cnonce="3b32e5a08ae621b2"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:36 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Type: text/javascript;charset=utf-8
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 3374
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/static/jquery_ui/js/jquery-ui-1.8.5.custom.min.js

GET /static/jquery_ui/js/jquery-ui-1.8.5.custom.min.js HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/static/jquery_ui/js/jquery-ui-1.8.5.custom.min.js", algorithm=MD5, response="63e3887a1c0102866947880423a1f361", qop=auth, nc=00000022, cnonce="d0810a681a864bea"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:36 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Type: text/javascript;charset=utf-8
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 22056
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
----------------------------------------------------------
http://evsecure-ocsp.verisign.com/

POST / HTTP/1.1
Host: evsecure-ocsp.verisign.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Content-Length: 115
Content-Type: application/ocsp-request
Connection: keep-alive
0q0o0M0K0I0 + ¹é²‡…øì¥ûBá>IÇ$&âÓe§ÂÝì»ð0 óC9ú¯313[wYÆ„á^Ç'À2•)(k¢00 +0
0  +0
HTTP/1.1 200 OK
Last-Modified: Tue, 01 Apr 2014 18:36:00 GMT
Expires: Tue, 08 Apr 2014 18:36:00 GMT
Content-Type: application/ocsp-response
Content-Transfer-Encoding: binary
Content-Length: 1895
Cache-Control: max-age=472982, public, no-transform, must-revalidate
Date: Thu, 03 Apr 2014 07:17:09 GMT
Connection: keep-alive
----------------------------------------------------------
https://my.domain.org/browse/icon/forward.png

GET /browse/icon/forward.png HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/browse/icon/forward.png", algorithm=MD5, response="a60071ccf4679c2299efe2e138f03913", qop=auth, nc=00000027, cnonce="82e62b35a7a9da96"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:36 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Length: 1956
Content-Type: image/png
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/static/button-donate.png

GET /static/button-donate.png HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/static/button-donate.png", algorithm=MD5, response="f5839336607dc251f95036be5d3fd6ca", qop=auth, nc=00000026, cnonce="1ea179c7928063d0"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:36 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Length: 5887
Content-Type: image/png
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
----------------------------------------------------------
http://evsecure-ocsp.verisign.com/

POST / HTTP/1.1
Host: evsecure-ocsp.verisign.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Content-Length: 115
Content-Type: application/ocsp-request
Connection: keep-alive
0q0o0M0K0I0 + E§ÔÔu_½íJìRÒAUüŠPºž¹%Z{U…O• céXkC;¤«Ol\*æÖ43±vÖ¢00 +0
0  +0
HTTP/1.1 200 OK
Last-Modified: Tue, 01 Apr 2014 12:20:39 GMT
Expires: Tue, 08 Apr 2014 12:20:39 GMT
Content-Type: application/ocsp-response
Content-Transfer-Encoding: binary
Content-Length: 1983
Cache-Control: max-age=450249, public, no-transform, must-revalidate
Date: Thu, 03 Apr 2014 07:17:09 GMT
Connection: keep-alive
----------------------------------------------------------
https://my.domain.org/browse/icon/random.png

GET /browse/icon/random.png HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/browse/icon/random.png", algorithm=MD5, response="f5d6489b5361c2f14e9c2b618f09dcc8", qop=auth, nc=00000029, cnonce="ab42060d70008c96"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:36 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Length: 1135
Content-Type: image/png
Keep-Alive: timeout=15, max=95
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/browse/icon/book.png

GET /browse/icon/book.png HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/browse/icon/book.png", algorithm=MD5, response="3d79c404f21455c5f2db4cb23644223b", qop=auth, nc=00000028, cnonce="2a13b821c518c684"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:36 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Length: 3633
Content-Type: image/png
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/browse/icon/user_profile.png

GET /browse/icon/user_profile.png HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/browse/icon/user_profile.png", algorithm=MD5, response="3d98b62a27fb07fc4b7b1351359cd024", qop=auth, nc=0000002b, cnonce="656e384540492794"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:36 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Length: 1745
Content-Type: image/png
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/browse/icon/lt.png

GET /browse/icon/lt.png HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/browse/icon/lt.png", algorithm=MD5, response="1186f74d23f0ad3c0c6feec65f96af31", qop=auth, nc=0000002a, cnonce="5109c0d6b586d02e"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:36 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Length: 4595
Content-Type: image/png
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
----------------------------------------------------------
https://www.paypal.com/en_US/i/scr/pixel.gif

GET /en_US/i/scr/pixel.gif HTTP/1.1
Host: www.paypal.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Connection: keep-alive
If-Modified-Since: Thu, 20 Mar 2014 01:47:36 GMT
Cache-Control: max-age=0

HTTP/1.1 304 Not Modified
Content-Type: image/gif
Last-Modified: Thu, 20 Mar 2014 01:47:36 GMT
Date: Thu, 03 Apr 2014 07:17:09 GMT
Connection: keep-alive
Set-Cookie: AKDC=slc-a-origin-www-2.paypal.com; expires=Thu, 03-Apr-2014 07:47:09 GMT; path=/; secure
----------------------------------------------------------
https://my.domain.org/browse/icon/column.png

GET /browse/icon/column.png HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/browse/icon/column.png", algorithm=MD5, response="2aaf0d88a7c34da7ca7ad2096efaa27c", qop=auth, nc=0000002c, cnonce="ddd490a69de13969"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:36 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Length: 2215
Content-Type: image/png
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/browse/icon/languages.png

GET /browse/icon/languages.png HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/browse/icon/languages.png", algorithm=MD5, response="c13ed4427ae016413cc5dab1ef473c2a", qop=auth, nc=0000002d, cnonce="12011244d70b1769"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:36 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Length: 5234
Content-Type: image/png
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/browse/icon/publisher.png

GET /browse/icon/publisher.png HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/browse/icon/publisher.png", algorithm=MD5, response="874f5a37bb67d18c3f2bcab0b54758d9", qop=auth, nc=0000002e, cnonce="3bab1760ad87436d"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:36 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Length: 4484
Content-Type: image/png
Keep-Alive: timeout=15, max=94
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/browse/icon/rating.png

GET /browse/icon/rating.png HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/browse/icon/rating.png", algorithm=MD5, response="7edcbd42fe90f2cdeafc5ad7674ae043", qop=auth, nc=0000002f, cnonce="4833ec406480a20d"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:36 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Length: 3328
Content-Type: image/png
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/browse/icon/series.png

GET /browse/icon/series.png HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/browse/icon/series.png", algorithm=MD5, response="814949293d471b9921dffa3686f85567", qop=auth, nc=00000031, cnonce="e0c89ead2a670946"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:36 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Length: 3303
Content-Type: image/png
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/browse/icon/search.png

GET /browse/icon/search.png HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/browse/icon/search.png", algorithm=MD5, response="6ab0db33471aa1967d46f5ff09006302", qop=auth, nc=00000030, cnonce="3abcaeb2c7702902"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:36 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Length: 3954
Content-Type: image/png
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/browse/icon/tags.png

GET /browse/icon/tags.png HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/browse/icon/tags.png", algorithm=MD5, response="4bc36fdd89e4b02cea4b095ec1cef9c3", qop=auth, nc=00000032, cnonce="cc2dd7a70e27c53b"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:36 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Length: 3512
Content-Type: image/png
Keep-Alive: timeout=15, max=97
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/static/logo.png

GET /static/logo.png HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/static/browse/browse.css
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/static/logo.png", algorithm=MD5, response="9ab975927f738141d17a70d763d3a1d6", qop=auth, nc=00000033, cnonce="430707b0be19da49"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:36 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Length: 13360
Content-Type: image/png
Keep-Alive: timeout=15, max=97
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/static/jquery_ui/css/humanity-custom/images/ui-bg_glass_70_ede4d4_1x400.png

GET /static/jquery_ui/css/humanity-custom/images/ui-bg_glass_70_ede4d4_1x400.png HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/static/jquery_ui/css/humanity-custom/jquery-ui-1.8.5.custom.css
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/static/jquery_ui/css/humanity-custom/images/ui-bg_glass_70_ede4d4_1x400.png", algorithm=MD5, response="f95741f0c5c79b55388a28231f1da7b3", qop=auth, nc=00000034, cnonce="6359bcea7990e5e0"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:36 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Length: 161
Content-Type: image/png
Keep-Alive: timeout=15, max=93
Connection: Keep-Alive
----------------------------------------------------------
https://my.domain.org/static/jquery_ui/css/humanity-custom/images/ui-icons_f08000_256x240.png

GET /static/jquery_ui/css/humanity-custom/images/ui-icons_f08000_256x240.png HTTP/1.1
Host: my.domain.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
DNT: 1
Referer: https://my.domain.org/static/jquery_ui/css/humanity-custom/jquery-ui-1.8.5.custom.css
Authorization: Digest username="myname", realm="Library", nonce="PlC/LB72BAA=61c30439ad4729eaf16e801d5701ca1d46a9ed3a", uri="/static/jquery_ui/css/humanity-custom/images/ui-icons_f08000_256x240.png", algorithm=MD5, response="f46d35a8de0e0e3fe0656a3cd70cbc51", qop=auth, nc=00000035, cnonce="bead90d92a35db0a"
Connection: keep-alive
If-Modified-Since: Sat, 30 Nov 2013 13:34:10 GMT
Cache-Control: max-age=0

HTTP/1.1 200 OK
Date: Thu, 03 Apr 2014 07:17:36 GMT
Server: calibre/1.30.0
Last-Modified: Sat, 30 Nov 2013 13:34:10 GMT
Content-Length: 4369
Content-Type: image/png
Keep-Alive: timeout=15, max=97
Connection: Keep-Alive
----------------------------------------------------------
chaley is offline   Reply With Quote
Old 04-03-2014, 11:31 PM   #8
coleman
Connoisseur
coleman began at the beginning.
 
Posts: 95
Karma: 38
Join Date: Jul 2007
Device: Android tablets and phones, Windows tablet, Kobo Aura One
Quote:
Originally Posted by chaley View Post
Thinking more about this, I realized that I do not get that warning from firefox. That makes me think that perhaps your reverse proxy is not completely filtering links. Alternatively you are using an old version of the calibre content server that did not completely encapsulate content.
Ah, that's interesting.

My proxy should be taking any requests that are coming in on a specifc domain and remapping them. But the one that I think is failing is:
Code:
http://calibre-ebook.com/favicon.ico
But it's in the header, it's not actually visible. But, since it's not coming in on my domain, it wouldn't get re-written. It'd be interesting to see if Calibre still inserts the URL prefix in that link, in which case your re-write rules would still see it, but mine would not.

The other info about the SSL chains, I'll look into. I was pretty sure all the intermediate certs were installed but I'll verify against your process.


Thanks for the help!
coleman is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Wrapping Calibre in SSL, Issue. Fmstrat Calibre 3 01-31-2012 10:29 PM
SSL and content server timoco Calibre 2 04-13-2011 10:42 AM
Classic HTTPS/SSL with Classic Nook cdstech69 Barnes & Noble NOOK 1 02-16-2011 08:40 AM
Wireless internet connection frustrating IDS connection Socrates iRex 8 10-21-2009 12:46 PM


All times are GMT -4. The time now is 11:34 PM.


MobileRead.com is a privately owned, operated and funded community.