Skip to content

Instantly share code, notes, and snippets.

@b10m
Created July 7, 2014 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save b10m/f3fca1263de8cf4c4be3 to your computer and use it in GitHub Desktop.
Save b10m/f3fca1263de8cf4c4be3 to your computer and use it in GitHub Desktop.
Flickr https bypass
<VirtualHost *:80>
ServerName www.flickr.com
SSLProxyEngine On
ProxyPass / https://www.flickr.com/
CustomLog /var/log/apache2/flickr-access combined
ErrorLog /var/log/apache2/flickr-error
</VirtualHost>
<VirtualHost *:80>
ServerName api.flickr.com
SSLProxyEngine On
ProxyPass / https://api.flickr.com/
CustomLog /var/log/apache2/flickr-access combined
ErrorLog /var/log/apache2/flickr-error
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment