Home » Questions » Computers [ Ask a new question ]

Daily Dilbert strip served by https

Daily Dilbert strip served by https

I have a web site which embeds the Daily Dilbert comic strip by parsing it from the RSS feed that dilbert.com publishes, but said website is SSL encrypted, and the image as published is not. This triggers a mixed content warning in Internet Explorer.

Asked by: Guest | Views: 187
Total answers/comments: 1
Guest [Entry]

"Let's pretend you've got the permission from Scott Adams or whoever owns the rights of the Dilbert strips.

You could do some reverse proxying, creating a rule for a fictive URL on your site, let's say a request

www.example.com/dilbert/strip.gif

which triggers your reverse proxy mechanism to fetch the image from the dilbert.com site

http://www.dilbert.com/..../strip.gif

and sending the response from your server with the content fetched from the Dilbert server. This way you can keep the SSL connection, because it's transparent for the user.

Depending on your platform you'll have to see your options for using a revery proxy mechanism."