Skip to content

Instantly share code, notes, and snippets.

@seekshiva
Created December 27, 2012 07:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save seekshiva/4386309 to your computer and use it in GitHub Desktop.
Save seekshiva/4386309 to your computer and use it in GitHub Desktop.
upstream thin {
server unix:/tmp/thin.0.sock;
server unix:/tmp/thin.1.sock;
server unix:/tmp/thin.2.sock;
}
server {
listen 80;
location /status.html {
proxy_pass http://thin;
}
if ($http_x_forwarded_proto = 'http') {
rewrite ^/(.*)$ https://$server_name$request_uri? permanent;
}
location / {
proxy_pass http://thin;
}
@boopathi
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment