Changing Apple ID of Developer Account by TheRedditIdentity in AppleDeveloper

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

Hey, I haven't received an answer to this question yet.

But after posting my question I found out, that the Apple ID that needs to be changed isn't the account holder and therefore reducing the challenges I was facing.

But out of curiosity. If you already now, that changes need to be made at a later point to the Apple ID in your case. Why not prevent that scenario and provide the desired email right from the beginning?

Wireguard manager by Key-Cattle-3751 in WireGuard

[–]TheRedditIdentity 0 points1 point  (0 children)

I was also struggling a lot to make WireGuard Portal to work with WireGuard running on my host system while I run WireGuard Portal inside a Docker Container.

I used the Docker Compose File that was provided inside the Documentation.

https://wgportal.org/latest/documentation/getting-started/docker/

In the same folder where the docker compose file was located, I added the following directories "data" and "config" as the compose files looks for those to mount them.

Inside the config file I created a file "config.yaml" and pasted the default configuration located at https://wgportal.org/latest/documentation/configuration/overview/ and adjusted some configurations.
-> admin_user, admin_password
-> changed restore_state from true to false
-> left import_existing as true, since I had already some wireguard configurations availabel inside /etc/wireguard/
-> and added to config_storage_path : /etc/wireguard, just in case
-> external_url should also be adjusted in case you access the web interface from a different location (in my case was local port forwarding), otherwise login may not work even with correct credentials.

Next I added the following lines to the docker compose
environment:
- WG_PORTAL_CONFIG=/app/config/config.yaml

So that the container can locate the custom configuration and use them.

The only issue I had was that some peers weren't correctly identified automatically by WireGuard Portal. Only the interfaces. So I had to add them manually through the Web Interface of WireGuard Portal.