Skip to content
h3llrais3r edited this page Sep 19, 2019 · 5 revisions

Reverse Proxy with nginx

    location /autosubliminal {
      proxy_pass http://autosubliminal;
      auth_basic off; # this is handled by autosubliminal internally

      # Websocket
      proxy_http_version 1.1;
      proxy_set_header Upgrade $http_upgrade;
      proxy_set_header Connection "upgrade";
      proxy_read_timeout 86400;
    }

See https://github.com/h3llrais3r/Auto-Subliminal/issues/217

See also https://github.com/pymedusa/Medusa/wiki/Reverse-Proxy-setup

Clone this wiki locally