Help for this page

Select Code to Download


  1. or download this
      ServerName example.com
      <Proxy *>
    ...
       ProxyPassReverse / http://localhost:8080/
       RequestHeader unset X-Forwarded-Host
       RequestHeader set X-Forwarded-Proto "http"
    
  2. or download this
    upstream backendurl {
        server 127.0.0.1:8080  fail_timeout=0;
    ...
           ssl_prefer_server_ciphers on;
          #add all the necessary ssl files, (eg .crt and key files) and li
    +nks here
    }