Check alle échte Black Friday-deals Ook zo moe van nepaanbiedingen? Wij laten alleen échte deals zien

[apache2] Proxypass en reverse op Debian Test icm SB, CP etc

Pagina: 1
Acties:

  • woutur
  • Registratie: Maart 2000
  • Laatst online: 29-11 16:34

woutur

Klauwtjes uit!

Topicstarter
Ik heb werkelijk alle tutorials gevolgd op internet en ben tot de volgende proxy.conf in mods.enabled gekomen:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
IfModule mod_proxy.c>

        # If you want to use apache2 as a forward proxy, uncomment the
        # 'ProxyRequests On' line and the <Proxy *> block below.
        # WARNING: Be careful to restrict access inside the <Proxy *> block.
        # Open proxy servers are dangerous both to your network and to the
        # Internet at large.
        #
        # If you only want to use apache2 as a reverse proxy/gateway in
        # front of some web application server, you DON'T need
        # 'ProxyRequests On'.

        ProxyRequests Off
        <Proxy *>
           AddDefaultCharset off
           Order Allow,Deny
           Allow from all
           #Require all denied
           #Require local
        </Proxy> 
## van poorten naar normale namen
        ProxyPass /sabnzbd/ http://localhost:6100/
        ProxyPassReverse /sabnzbd/ http://localhost:6100/
        ProxyPass /sickbeard/ http://localhost:6110/
        ProxyPassReverse /sickbeard/ http://localhost:6110/
        ProxyPass /OpenKM/ http://localhost:6120/OpenKM/
        ProxyPassReverse /OpenKM/ http://localhost:6120/OpenKM/
        ProxyPass /couchpotato/ http://localhost:6130/
        ProxyPassReverse /couchpotato/ http://localhost:6130/
        ProxyPass /headphones/ http://localhost:6150/
        ProxyPassReverse /headphones/ http://localhost:6150/

        # Enable/disable the handling of HTTP/1.1 "Via:" headers.
        # ("Full" adds the server version; "Block" removes all outgoing Via: headers)
        # Set to one of: Off | On | Full | Block
        ProxyVia On

</IfModule>

Bij Couchpotato krijg ik een infinite loop (omleidingslus) als ik op de inlog pagina kom (via: http://localhost/couchpotato/). Sickbeard doet het niet en ook sabnzbd gaat niet goed. Ik heb al deze programma's waar dat kon een URL_BASE ingevuld zodat deze programma's zich bewust zijn van de proxypass en reverse. (bij couchpotato is dat bijv. URL_BASE=couchpotato , zonder slashes of wat). Wat mis ik?

Als je niet de moeite neemt je post in net Nederlands te schrijven, neem ik de moeite niet hem te lezen.


  • CAPSLOCK2000
  • Registratie: Februari 2003
  • Laatst online: 10:42

CAPSLOCK2000

zie teletekst pagina 888

Ik doe precies hetzelfde met m'n eigen proxy.
Ik gebruik geen ProxyRequests of ProxyVia.
Mijn <Proxy *> blokje bevat nog wat authenticatie. Vervelend hierbij is dat mijn browser niet snapt dat er eerst een wachtwoord moet worden opgegeven voor de proxy, en daarna nog een voor de applicatie die er achter draait. Ik heb dat alleen kunnen oplossen door beiden hetzelfde wachtwoord te geven.

Als laatste eindig ik niet op slashes:

ProxyPass /cacti http://noc.gielen.name/cacti
ProxyPassReverse /cacti http://noc.gielen.name/cacti

This post is warranted for the full amount you paid me for it.


  • woutur
  • Registratie: Maart 2000
  • Laatst online: 29-11 16:34

woutur

Klauwtjes uit!

Topicstarter
Ik heb Sickbeard aan de praat. OpenKM en Couchpotato nog niet. OpenKM deed het zaterdag heel even maar zonder de config te veranderen stopte deze met werken. Couchpotato blijft bij mij een blank scherm en ik heb nu heel wat configuraties geprobeerd. Misschien maar even wat loggen bij de ontwikkelaar zelf.

Edit: hier mijn eindelijk werkende config. In beide couchpotato en sickbeard de proxy aangegeven. Respectievelijk (cp en sb): url_base = couchpotato en web_root = /sickbeard

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
IfModule mod_proxy.c>

        # If you want to use apache2 as a forward proxy, uncomment the
        # 'ProxyRequests On' line and the <Proxy *> block below.
        # WARNING: Be careful to restrict access inside the <Proxy *> block.
        # Open proxy servers are dangerous both to your network and to the
        # Internet at large.
        #
        # If you only want to use apache2 as a reverse proxy/gateway in
        # front of some web application server, you DON'T need
        # 'ProxyRequests On'.

        ProxyRequests Off
        <Proxy *>
           AddDefaultCharset off
           Order Allow,Deny
           Allow from all
           #Require all denied
           #Require local
        </Proxy>
# Van poorten naar normale namen
# Sabnzbd
        ProxyPass /sabnzbd/ http://localhost:6100/
        ProxyPassReverse /sabnzbd/ http://localhost:6100/
# Sickbeard
        ProxyPass /sickbeard/ http://localhost:6110/sickbeard/
        ProxyPassReverse /sickbeard/ http://localhost:6110/sickbeard/
# OpenKM
        ProxyPass /OpenKM/ http://localhost:6120/OpenKM/
        ProxyPassReverse /OpenKM/ http://localhost:6120/OpenKM/
# Couchpotato
        ProxyPass /couchpotato/ http://localhost:6130/couchpotato/
        ProxyPassReverse /couchpotato/ http://localhost:6130/couchpotato/
#  Headphones
        ProxyPass /headphones/ http://localhost:6150/
        ProxyPassReverse /headphones/ http://localhost:6150/

        # Enable/disable the handling of HTTP/1.1 "Via:" headers.
        # ("Full" adds the server version; "Block" removes all outgoing Via: headers)
        # Set to one of: Off | On | Full | Block
        ProxyVia On

</IfModule>


Voor het nageslacht. Hopelijk heeft iemand hier ooit nog iets aan!

[ Voor 77% gewijzigd door woutur op 08-10-2013 21:05 ]

Als je niet de moeite neemt je post in net Nederlands te schrijven, neem ik de moeite niet hem te lezen.