Reverse Proxy on CentOS 7

General support for problems installing or using Deluge
Post Reply
askurat

Reverse Proxy on CentOS 7

Post by askurat »

I am having an issue trying to setup a reverse proxy for Deluge 1.3.12. My vhost is setup on CentOS 7. It seems to load the webui just fine but doesn't allow me to login. It just keeps prompting for my password. I have tried just about everything. This seems to only happen when connecting through https.

Here is what my conf file looks like currently:

Code: Select all

<VirtualHost *:80>
ServerAdmin admin@domain.com
ServerName deluge.domain.com
ServerAlias www.deluge.domain.com
DocumentRoot /var/www/html

ErrorLog /var/log/apache/deluge.domain.com/error.log

ProxyPreserveHost On
    
ProxyPass / http://localhost:8112/

<Location />
    ProxyPassReverse /
    ProxyPassReverseCookiePath / /               
    RequestHeader set X-Deluge-Base "/"          
    Order allow,deny
    Allow from all
</Location>

RewriteEngine on
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,QSA,R=permanent]
</VirtualHost>
Cas
Top Bloke
Top Bloke
Posts: 3681
Joined: Mon Dec 07, 2009 6:04 am
Location: Scotland

Re: Reverse Proxy on CentOS 7

Post by Cas »

Post Reply