dirs (owner)

Revisions

gist: 221879 Download_button fork
public
Public Clone URL: git://gist.github.com/221879.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
location ^~ /retweet/ {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_max_temp_file_size 0;
proxy_intercept_errors on;
            proxy_pass http://thin_pool_widget;
break;
}