All pastes #2088407 Raw Edit

Something

public text v1 · immutable
#2088407 ·published 2011-10-09 14:54 UTC
rendered paste body
     server {
        listen          80;
             proxy_pass http://localhost:8080;
             proxy_set_header Host $host;
             proxy_set_header  X-Real-IP  $remote_addr;
         }
  server {
          listen          443;
          location / {
                  proxy_pass http://localhost:8080;
                  proxy_set_header Host $host;
                  proxy_set_header  X-Real-IP  $remote_addr;
          }
     }