Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

[Support] Linuxserver.io - Organizr

Featured Replies

7 minutes ago, GilbN said:

 

In homepage settings you should use local-IP:port and API key.  Or is headphones not on  the same lan as Organizr?

 

Ok... so I was doing it incorrectly. I switched it to local-IP:port with correct api key in homepage settings. Then in the tab settings I put the path to /home.

It still gives 404 not found.

  • Replies 165
  • Views 65k
  • Created
  • Last Reply
6 minutes ago, Dark_Gypsy said:

 

Ok... so I was doing it incorrectly. I switched it to local-IP:port with correct api key in homepage settings. Then in the tab settings I put the path to /home.

It still gives 404 not found.

In tab you need to enter the whole subdomain. When using just /home Organizr is trying domain.com/home and that doesn't exist. So input sub.domain.com

7 minutes ago, GilbN said:

In tab you need to enter the whole subdomain. When using just /home Organizr is trying domain.com/home and that doesn't exist. So input sub.domain.com

Ok i tried that. Now it just shows a blank page when I click on the icon but no 404 error.

4 minutes ago, Dark_Gypsy said:

Ok i tried that. Now it just shows a blank page when I click on the icon but no 404 error.

 

Try to comment out the X-Frame option in your nginx.conf file in the nginx folder. e.g /appdata/letsencrypt/nginx/nginx.conf

#   add_header X-Frame-Options SAMEORIGIN;
16 minutes ago, GilbN said:

 

Try to comment out the X-Frame option in your nginx.conf file in the nginx folder. e.g /appdata/letsencrypt/nginx/nginx.conf


#   add_header X-Frame-Options SAMEORIGIN;

I did a re-install of letsencrypt and cleared the appdata for it and forgot to re-comment that out! Works now... thanks!

7 minutes ago, Dark_Gypsy said:

I did a re-install of letsencrypt and cleared the appdata for it and forgot to re-comment that out! Works now... thanks!

No problem, glad I could help.

  • 4 weeks later...

Alright.

 

So I have been reading through all this stuff and have been able to piece the reverse proxy config together for all of this stuff using Letsencrypt.

 

Thanks to everyone who has posted their config and also the tutorial at: https://blog.weyland.tech/blog/how-to-setup-organizr-with-letsencrypt-on-unraid

 

I have one remaining problem with Organizr that I can not for the life of me solve. I have the reverse proxy with subdomains and subdirectories that work as intended outside of my network and all of my tabs work in Organizr within the lan. However, when I try to access Organizr outside the lan I just end up with blank tabs.

 

I have commented out "add_header X-Frame-Options SAMEORIGIN;" in the nginx.conf file but I still end up with the same problem. Is there something I am missing? I feel like I am so close and it is probably something simple.....

 

Any help is appreciated! :)

14 minutes ago, WexfordStyle said:

Alright.

 

So I have been reading through all this stuff and have been able to piece the reverse proxy config together for all of this stuff using Letsencrypt.

 

Thanks to everyone who has posted their config and also the tutorial at: https://blog.weyland.tech/blog/how-to-setup-organizr-with-letsencrypt-on-unraid

 

I have one remaining problem with Organizr that I can not for the life of me solve. I have the reverse proxy with subdomains and subdirectories that work as intended outside of my network and all of my tabs work in Organizr within the lan. However, when I try to access Organizr outside the lan I just end up with blank tabs.

 

I have commented out "add_header X-Frame-Options SAMEORIGIN;" in the nginx.conf file but I still end up with the same problem. Is there something I am missing? I feel like I am so close and it is probably something simple.....

 

Any help is appreciated! :)

In your organizer tabs, do you have http://IP:port or domain.com/service?

Do I used the external ip/domain or the internal LAN ip. I was under the impression that it should be the internal LAN ip (ie. 192.168.2.2)?

 

I have 192.168.2.2:8181/plexpy for example. I guess this is incorrect?

Edited by WexfordStyle

2 minutes ago, WexfordStyle said:

Do I used the external ip/domain or the internal LAN ip. I was under the impression that it should be the internal LAN ip (ie. 192.168.2.2)?

 

I have 192.168.2.2:8181/plexpy for example. I guess this is incorrect?

You need to input your domain. It's not possible to access local IP addresses from outside your network without a VPN. So add yourdomain.com/plexpy and so on

Just now, GilbN said:

You need to input your domain. It's not possible to access local IP addresses from outside your network without a VPN. So add yourdomain.com/plexpy and so on

 

Thanks @GilbN ! I'll give it a try. I assumed that once you were through the reverse proxy into Organizr that the services would then be local.

1 minute ago, WexfordStyle said:

 

Thanks @GilbN ! I'll give it a try. I assumed that once you were through the reverse proxy into Organizr that the services would then be local.

Np. Pro tip, with sub directories you can just type /sonarr or /plexpy in Organizr.

1 hour ago, GilbN said:

Np. Pro tip, with sub directories you can just type /sonarr or /plexpy in Organizr.

 

Everything appears to work. Thanks again @GilbN !

  • 3 weeks later...

Hi all,

 

I have a small problem getting a reverse proxy to work with this container. I am using the Letsencrypt docker for all my http and reverse proxy needs, though i cant get this docker to respond to https://domain.com/roganizr
I am using: 

 

upstream organizr-upstream {
    server 192.168.1.170:8585;
    keepalive 32;
}

 

    location / {
        proxy_pass http://organizr-upstream;
        include /config/nginx/proxy.conf;
        }

 

 It will only work on the root domain after i comment out:

location / {
        try_files $uri $uri/ /index.html index.php?_url=$uri&$query_string;
        }

So, what i want to do is make organizr a subdirectory like the above https://mydomain.com/organizr, i have tried all sorts of methods like

 

    location /organize {
        proxy_pass http://organizr-upstream;
        include /config/nginx/proxy.conf;
        }

 

but i does not work. Am i missing something, or cant you use subdirectories with upstream?

My config is attached.

Thanks in advance!
SlaZe_XE

default

12 hours ago, SlaZe_XE said:

Hi all,

 

I have a small problem getting a reverse proxy to work with this container. I am using the Letsencrypt docker for all my http and reverse proxy needs, though i cant get this docker to respond to https://domain.com/roganizr
I am using: 

 

upstream organizr-upstream {
    server 192.168.1.170:8585;
    keepalive 32;
}

 

    location / {
        proxy_pass http://organizr-upstream;
        include /config/nginx/proxy.conf;
        }

 

 It will only work on the root domain after i comment out:

location / {
        try_files $uri $uri/ /index.html index.php?_url=$uri&$query_string;
        }

So, what i want to do is make organizr a subdirectory like the above https://mydomain.com/organizr, i have tried all sorts of methods like

 

    location /organize {
        proxy_pass http://organizr-upstream;
        include /config/nginx/proxy.conf;
        }

 

but i does not work. Am i missing something, or cant you use subdirectories with upstream?

My config is attached.

Thanks in advance!
SlaZe_XE

default

No It should work on subdirectories. I use It on netdata. Can you post your complete config?

My config has been uploaded it´s the default link beneath my name.

 

Thx!

On 10/12/2017 at 2:53 PM, SlaZe_XE said:

My config has been uploaded it´s the default link beneath my name.

 

Thx!

 

It's not possible to do sub directory with Org. You can't add a base URL in settings. Not yet at least.  You can do sub domain though. 

Edited by GilbN

@GilbN Can you post your conf? I just got this setup but when I login I get a "file not found" error

 

Bummer, and i cant get SQLite to work with the letsencrypt docker so i can't just use that.

16 minutes ago, SlaZe_XE said:

Bummer, and i cant get SQLite to work with the letsencrypt docker so i can't just use that.

 

SQlite is installed in the Organizr container. So unless you have installed org in you letsencrypt/nginx www folder and point your config there it should be green. If you go to localIP:port/check.php everything should be green. 

Edited by GilbN

Sorry, i meant SQLite3, thats red on the check.php

Yeah, even tried to reinstall LetsEncrypt. But also looked inside the container, i cant find the sqlite3.so file, it is there in the Organizr container.

Edited by SlaZe_XE

Wait i think we are talking about different containers now, SQLite3 is in stalled in the Organizr container but not in the LetsEncrypt container. Though i cant make i subdomain to use for the Organizr container and are therefore looking for a solution to make it a subdirectory. And i can't find that solution anywhere, by using the LetsEncrypt container for the reverse proxy. My second attempt was putting Organizer in a folder in the LetsEncrypt container, and not using the Organizr container. But as mentioned above SQLite3 is not installed in the LetsEncrypt container.

12 minutes ago, SlaZe_XE said:

Wait i think we are talking about different containers now, SQLite3 is in stalled in the Organizr container but not in the LetsEncrypt container. Though i cant make i subdomain to use for the Organizr container and are therefore looking for a solution to make it a subdirectory. And i can't find that solution anywhere, by using the LetsEncrypt container for the reverse proxy. My second attempt was putting Organizer in a folder in the LetsEncrypt container, and not using the Organizr container. But as mentioned above SQLite3 is not installed in the LetsEncrypt container.

Ah, I think I understand. Your domain provider wont let you create a sub domain?  For better troubleshooting go to https://gitter.im/Organizrr/Lobby We all hang out there :)

Archived

This topic is now archived and is closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.