-
Content Count
46 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Gallery
Bug Reports
Documentation
Landing
Everything posted by Tuumke
-
There should be 2 parts, 1 for the server block, the other in location block i got config/nginx/auth.conf which has: include /config/nginx/proxy-confs/organizr-auth.subfolder.conf; auth_request /auth-0; and a file called auth-location.conf (but on my external VPS instead of same host) in same folder location ~ ^/auth-(.*) { resolver 127.0.0.11 valid=30s; set $upstream_app organizrv2; set $upstream_port 5076; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port/api/v2/auth&group=$1; proxy_pass_request_body off;
-
Lol, so many data on it.. i can't just wipeclean...
-
Anyone else having this problem: https://github.com/binhex/arch-qbittorrentvpn/issues/58 Where the docker just wonts fully start? Where it's just stuck at 2020-10-29 14:12:13,463 DEBG 'start-script' stdout output: [info] Starting OpenVPN (non daemonised)... 2020-10-29 14:12:13,555 DEBG 'start-script' stdout output: Thu Oct 29 14:12:13 2020 WARNING: file 'credentials.conf' is group or others accessible Thu Oct 29 14:12:13 2020 OpenVPN 2.4.9 [git:makepkg/9b0dafca6c50b8bb+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Apr 20 2020 2020-10
-
Indirectly. Had port 22 forwarded (as wel as 80 en 443)
-
I was running adguard and also have a UDM pro, when i noticed that stuff was getting blocked from my nas. I immediatly closed port 22, then saw this in the syslog: Oct 29 09:42:54 NAS sshd[9909]: error: connect_to payy.co.com port 80: failed. Oct 29 09:42:54 NAS sshd[9909]: channel_by_id: 0: bad id: channel free Oct 29 09:42:54 NAS sshd[9909]: Disconnecting user adm 89.39.104.123 port 4746: oclose packet referred to nonexistent channel 0 Oct 29 09:42:54 NAS sshd[9909]: Connection reset by user adm 89.39.104.123 port 4746 Oct 29 09:44:19 NAS sshd[24421]: error: connect_to t.paypal.co
-
Argh, i'm getting a lot of stalls recently. I swichted to strict_port_forward => No today, since of the PIA issues. Now im seeing this in the logs: 2020-09-11 14:40:27,365 DEBG 'start-script' stdout output: Fri Sep 11 14:40:27 2020 [943625b3bd94d7c42705f8e0c9d3651e] Inactivity timeout (--ping-restart), restarting Is there any way arround that? Probably something to do with Q17 on https://github.com/binhex/documentation/blob/master/docker/faq/vpn.md It does come back up so i'm guessing just a temporary timeout or sometihng.
-
The test works for me, but i also have Telegram enabled, and now i only get Telegram messages.
-
Hm, i have the docker update set to update each 30 minutes. Even though it says its updated through notifications, it's not updating my dockers?!
-
I just installed this plugin. Thanks for the work! Is there anyway to have it notify to a slack (or discord with /slack) channel like watchtower? Just noticed the agent notification settings in the notification settings.. doh
-
Is it possible to have your user script log to its own logfile?
-
Hey Binhex! First off... Thx so much for all the dockers you create. I switched from Transmission to Deluge, back to Transmission and now to qBittorrent. I did so for the support with Organizr. But when i add qBintorrent to Organizr(v2), firefox gives me a Mixed content blocking warning and i can't load the page. Any idea? -edit- Never mind, had to disable the click high jacking
-
I also created a docker-compose file for use with Traefik (old traefik) for use on my VPS (not unraid system): note: i have environment variables set in /etc/environment for ${USERDIR}, ${DOMAINNAME} you might want to replace those nessus: image: jbreed/nessus container_name: nessus hostname: nessus restart: unless-stopped networks: - traefik_proxy volumes: - ${USERDIR}/docker/nessus:/config - "/etc/localtime:/etc/localtime:ro" - ${USERDIR}/docker/shared:/shared environment: PUID: ${PUID} PGID: ${PGID} TZ: ${TZ}
-
Don't have DNS anymore. Updated my docker this morning. Not sure if its because of install docker pihole, or update of container Have tried several things like: - --dns=ipadressofpihole - add variable in template (Key3, DNS1, ipaddressofpihole) I can't use apt-get update, no DNS resolving Also nog ping or nslookup command available in the container itself...
-
This is just the Unifi controller right? I thought there was a standard config file for it in the letsencrypt docker from ls.io? I checked my docker, it has this file: user@TOWER:/mnt/user/dockers/letsencrypt/nginx/proxy-confs# cat unifi.subdomain.conf.sample # make sure that your dns has a cname set for unifi and that your unifi container is not using a base url server { listen 443 ssl; listen [::]:443 ssl; server_name unifi.*; include /config/nginx/ssl.conf; client_max_body_size 0; # enable for ldap auth, fill in ldap details in ldap.conf #
-
I also have configured letsencrypt reverse proxy for subdomain nessus.subdomain.conf Note1: include /config/nginx/auth.conf points towards my Organizr setup. You might not want to use this server { listen 443 ssl; listen [::]:443 ssl; server_name nessus.*; include /config/nginx/ssl.conf; client_max_body_size 0; include /config/nginx/auth-location.conf; location / { include /config/nginx/auth.conf; include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_nessus w.x.y.z; ## Change
-
I guess compiling plugins takes a long time?
-
Looks cool. Will give this a go later on
-
Am on 6.7.0. Didnt notice FTP wasnt working since i personally dont use it. Buddy of mine said that his Kodi wasnt working anymore. Had to install the beta and copy over my proftpd.conf modifications. Works fine now.
-
(Added in 6.5.1) Docker - user defined bridge networks
Tuumke replied to aptalca's topic in Feature Requests
Thats cool. Didnt know that. But does the community applications plugin support this? -
Arrghh.. im trying to get subdomain working for Sonarr but i have troubles with setting it upo with Organizr authentication. The authentication part works, but the UI wont load api/config/ui gives a 404, same with api/config/status Everything else loads just fine. server { listen 443 ssl; listen [::]:443 ssl; server_name sonarr.*; include /config/nginx/ssl.conf; client_max_body_size 0; location / { auth_request /auth-0; error_page 401 =200 https://organizr.domain.tld/; location ~ (/sonarr)?/api { auth_request
-
(Added in 6.5.1) Docker - user defined bridge networks
Tuumke replied to aptalca's topic in Feature Requests
meh... this is making it tempting to switch to docker-compose, does it not? -
(Added in 6.5.1) Docker - user defined bridge networks
Tuumke replied to aptalca's topic in Feature Requests
This! For security options, it would be nice to be able to put fo example MariaDB in a 'gapped' network that is not connect to internet, and have a nginx/apache/django/whatvere webservice that needs a DB have 2 networks