August 31, 20178 yr 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.
August 31, 20178 yr 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
August 31, 20178 yr 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.
August 31, 20178 yr 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;
August 31, 20178 yr 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!
August 31, 20178 yr 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.
September 25, 20178 yr 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!
September 25, 20178 yr 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?
September 25, 20178 yr 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 September 25, 20178 yr by WexfordStyle
September 25, 20178 yr 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
September 25, 20178 yr 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.
September 25, 20178 yr 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.
September 25, 20178 yr 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 !
October 11, 20178 yr 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
October 12, 20178 yr 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?
October 14, 20178 yr 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 October 14, 20178 yr by GilbN
October 15, 20178 yr @GilbN Can you post your conf? I just got this setup but when I login I get a "file not found" error
October 17, 20178 yr Bummer, and i cant get SQLite to work with the letsencrypt docker so i can't just use that.
October 17, 20178 yr 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 October 17, 20178 yr by GilbN
October 17, 20178 yr 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 October 17, 20178 yr by SlaZe_XE
October 17, 20178 yr 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.
October 17, 20178 yr 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.