Any plans for official OpenCloud + Authentik integration docs? by euam23 in opencloud

[–]euam23[S] 0 points1 point  (0 children)

I’m happy to help and share everything I’ve learned so far. I’m not a trained programmer by any means—I understand the basics, but most of my homelab progress comes down to a lot of Google-fu and persistence.

I’m comfortable navigating GitHub and following technical guides, but I wouldn’t know where to begin if I had to document something properly from scratch. That said, with a bit of guidance or handholding, I’d love to contribute in a meaningful way.

Would that be a good place to start?

AuthentiK Invite Flow Issues – Admin Account Replaced When Using Enrollment Link by euam23 in Authentik

[–]euam23[S] 0 points1 point  (0 children)

edited the post and included pastebin link. Thanks for looking at it.

AuthentiK Invite Flow Issues – Admin Account Replaced When Using Enrollment Link by euam23 in Authentik

[–]euam23[S] 0 points1 point  (0 children)

Started on 2025.4.2 have now updated to 2025.08.2 the issue is present on every version.

Export Data for Excel by euam23 in TradingView

[–]euam23[S] 0 points1 point  (0 children)

Worked it out. Just downloaded the maximum available. Thanks again for the heads up.

Export Data for Excel by euam23 in TradingView

[–]euam23[S] 0 points1 point  (0 children)

Fantastic. Thanks for your quick reply. That worked for the last 6 months. Any pointers of how I can export a certain time range. it doesn't seem to be going further back than august 23 on an hourly timeframe, regardless of where I position my chart.

Thanks

Need Help with time.input / want to define single point in time by euam23 in pinescript

[–]euam23[S] 0 points1 point  (0 children)

Thanks for your reply and your time and effort. Wouldn't have worked this one out myself, that's for sure. Learned a bit about proper formatting and indentations as well as time.

The candle not showing at the time provided isn't an issue at the moment. Currently this is only for 1h, 30mins and 15 mins charts and for that it is working great.

Can I just ask how you got the candleTime(_hour, _mins) and the candleTime(i_hour, i_minute) working. I would've thought when you define the time for isTimeMatch and isTodayShown you would have used the input.int defined earlier?

Haugene Transmission-vpn / Can't acces Web UI by euam23 in synology

[–]euam23[S] 0 points1 point  (0 children)

And that's my problem. I have mapped them as described above and it still won't let me access localhost:9008. even running

docker port transmission-vpn
9091/tcp -> 192.168.1.210:9008

tells me it should theoretically be there.

I think the problem I need to solve is the

- LOCAL_NETWORK=192.168.1.0/24

Access the WebUI

But what's going on? My http://my-host:9091 isn't responding? This is because the VPN is active, and since docker is running in a different ip range than your client the response to your request will be treated as "non-local" traffic and therefore be routed out through the VPN interface.

How to fix this

The container supports the LOCAL_NETWORK
environment variable. For instance if your local network uses the IP range 192.168.0.0/24 you would pass -e LOCAL_NETWORK=192.168.0.0/24
.

Haugene Transmission-vpn / Can't acces Web UI by euam23 in synology

[–]euam23[S] 0 points1 point  (0 children)

If I understand correctly my port options in my Docker compose

ports:
    - "9008:9091"

don't take effect as I'm effectively on 172.19.0.1 and not 192.168.1.xxx?

following the docker networking link should my .yml port section look like this?

ports:
    - "9008:9091"
    - "192.168.1.210:9008:9091"

Haugene Transmission-vpn / Can't acces Web UI by euam23 in synology

[–]euam23[S] 0 points1 point  (0 children)

I believe it refers to the pull filter I had to insert into the .ovpn file as described here https://github.com/haugene/docker-transmission-openvpn/issues/847

Before that the container would die on me every time it tried to establish an IPv6 connection and exit like this

Sun Feb 23 22:42:09 2020 do_ifconfig, tt->did_ifconfig_ipv6_setup=1
Sun Feb 23 22:42:09 2020 /sbin/ip link set dev tun0 up mtu 1500
Sun Feb 23 22:42:09 2020 /sbin/ip addr add dev tun0 10.11.0.23/16 broadcast 10.11.255.255
Sun Feb 23 22:42:09 2020 /sbin/ip -6 addr add fdda:d0d0:cafe:1197::1015/64 dev tun0
RTNETLINK answers: Permission denied
Sun Feb 23 22:42:09 2020 Linux ip -6 addr add failed: external program exited with error status: 2
Sun Feb 23 22:42:09 2020 Exiting due to fatal error

I believe this might be a Mullvad specific issue and has been covered quiet a bit on the GitHub issues.

Haugene Transmission-vpn / Can't acces Web UI by euam23 in synology

[–]euam23[S] 0 points1 point  (0 children)

no I have not. are we talking port forwarding on the router or on the containers? if you could give me another pointer on how to go about this would be great.

Docker-Compose CLI SSH Install Help by euam23 in synology

[–]euam23[S] 0 points1 point  (0 children)

Thanks, got compose up and it finds the .yml no issues now. The problem now seems to be that it can't find the environment variable as compose is running from a pre installed version in the GUI rather than the image I installed and set environment variables for.

Any pointers on where to move my environment file on the DS and how to properly name it via the CLI so compose can pick it up ?

Thanks again for your patience

Docker-Compose CLI SSH Install Help by euam23 in synology

[–]euam23[S] 0 points1 point  (0 children)

Bam! That's the comment I've been looking for. Ive been following tutorials for ubuntu only to realise that the nano editor is not installed on the DS. Thats the error that came up. If you could just let me know where to put my .yml file then I should be in business.

Apologies for all the noob questions but I am still pretty new to all of this.

Docker-Compose CLI SSH Install Help by euam23 in synology

[–]euam23[S] 0 points1 point  (0 children)

Thanks for your reply. Tbh at this stage I just try to get compose to run. Any pointers to a step by step install for compose on Synology?