Setting up reverse proxy for organizr docker

  • Hi guys,


    I dont know if this is the correct section to ask, but I need some assistance. I have OMV v2 installed with the docker plugin running a couple containers which include radarr, sonarr, ombi, etc. I just recently found out about Organizr and installed it through the docker linuxserver.io repo. Now the problem I am having is trying to reverse proxy it. All the other containers have been pretty straight forward with just using the below settings template, but I can't get organizr to work the same way. I have tried searching and reading about it, but I'm not really understanding how to set it up. I was looking at the configuration folder of the Organizr container and it has its own nginx folder and files. Could that be what is causing the problem? Do I need to add a specific directory? When i set it up, I only set a config directory and nothing else. Any help would be appreciated.

    Code
    location /sonarr {
    		proxy_pass http://127.0.0.1:8989;
    		proxy_set_header Host $host;
    		proxy_set_header X-Real-IP $remote_addr;
    		proxy_set_header X-Forwarded-For 
    $proxy_add_x_forwarded_for;
    
    
    	}

    2.2.14 (stone burner)
    AMD Athlon(tm) 5350 APU
    Linux 3.16.0-0.bpo.4-amd64

    Einmal editiert, zuletzt von colehan () aus folgendem Grund: I was able to figure it out with this. location ^~ /organizr/ { proxy_pass http://127.0.0.1:90/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; add_header X-Content-Type-Options "nosniff"; add_header X-Frame-Options "SAMEORIGIN"; add_header X-XSS-Protection "1; mode=block"; }

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!