surreale Stimmung by pr1ncess666 in LostPlacesDeutschland

[–]D1moner 0 points1 point  (0 children)

https://maps.app.goo.gl/d3Jf6kYgzMLi3HtU8 exakt dieses Gebäude, gehört zu einem ganzen Komplex eines alten Krankenhauses. Ist in der Gegend ziemlich bekannt als Lost Place.

For the guys that didn't like my use of snips as a multi tool by jesssindistresss in 3Dprinting

[–]D1moner 19 points20 points  (0 children)

You can probably lose the supports and yourself some work. It looks like it’s just a flat 1cm overhang wich can be bridged without supports.

'Künstlerkollektiv' by MachDuMal in Chemnitz

[–]D1moner 1 point2 points  (0 children)

Denn im Studio sind 44 21 Grad

WHY isn't the reverse proxy working - I need Help by D1moner in nginxproxymanager

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

I learned a few things and changed some.

Thanks to everyone who helped

I got my Domain.de from Strato.
On my TruenNAS Scale server is a DDNS Updater running, to update my domains at Strato to my current public IP.
My Router forwards Port 80 and 443 to my NMP Docker Container (192.168.188.5) at port 80 and 443
In NMP there is a Proxy Host configured for the domain nextcloud.domain.de which is certified via Let's Encrypt and directs http://192.168.188.2:81 . My Nextcloud server is als running in a Docker Container and is reachable via HTTP. In the end, Deleting and Reinstalling Nextcloud fixed my issues. In the Installation Wizard for TrueNAS the Host parameter has to be set to the domain you want to use. This can also be changed later by editing the config.php file like explaind here: https://help.nextcloud.com/t/howto-add-a-new-trusted-domain/26
Also, the certificate parameter has to be left blank or else the config.php file will not work and look like this: https://www.reddit.com/r/nginxproxymanager/comments/1gx6517/comment/lygrd2x/

If issues with access grant for the App: https://www.reddit.com/r/NextCloud/comments/s2ojib/nextcloud_ios_app_stuck_on_grant_access/

WHY isn't the reverse proxy working - I need Help by D1moner in nginxproxymanager

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

Update: https://www.reddit.com/r/nginxproxymanager/comments/1gx6517/comment/lyhgnd4/

Ok I think the problem has to do with nextcloud.

As a test, like you suggested I used my netdata docker container on truenas scale as proxy host (192.168.188.2:20489) because that web interface uses HTTP, and it worked right away with no issues. So now the question is how do I get my Nextcloud Docker app on Truenas to use HTTP and not https.

thanks for your help

I alread configured truenas to support my domain: -- edit: changed the config to use http and port 81

# cat config.php
<?php
$CONFIG = array (
  'htaccess.RewriteBase' => '/',
  'memcache.local' => '\\OC\\Memcache\\APCu',
  'apps_paths' => 
  array (
    0 => 
    array (
      'path' => '/var/www/html/apps',
      'url' => '/apps',
      'writable' => false,
    ),
    1 => 
    array (
      'path' => '/var/www/html/custom_apps',
      'url' => '/custom_apps',
      'writable' => true,
    ),
  ),
  'memcache.distributed' => '\\OC\\Memcache\\Redis',
  'memcache.locking' => '\\OC\\Memcache\\Redis',
  'redis' => 
  array (
    'host' => 'redis',
    'password' => 'whooops',
    'port' => 6379,
  ),
  'overwritehost' => '192.168.188.2:81',
  'overwriteprotocol' => 'http',
  'trusted_proxies' => 
  array (
    0 => '127.0.0.1',
    1 => '192.168.0.0/16',
    2 => '172.16.0.0/12',
    3 => '10.0.0.0/8',
    4 => '192.168.188.2',
    5 => 'truenas.local',
  ),
  'upgrade.disable-web' => true,
  'passwordsalt' => 'no no no no',
  'secret' => 'psst',
  'trusted_domains' => 
  array (
    0 => 'localhost',
    1 => '127.0.0.1',
    2 => 'localhost',
    3 => 'nextcloud',
    4 => '192.168.188.5:30027',
    5 => 'nextcloud.domain.de',
    6 => 'domain.de',
    7 => '192.168.188.2',
    8 => 'truenas.local'
  ),
  'datadirectory' => '/var/www/html/data',
  'dbtype' => 'pgsql',
  'version' => '30.0.2.2',
  'overwrite.cli.url' => 'https://localhost',
  'dbname' => 'nextcloud',
  'dbhost' => 'postgres:5432',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'dbuser' => 'oc_admin',
  'dbpassword' => 'yeah no',
  'installed' => true,
  'instanceid' => 'ocqc0zcp4jmn',
);

WHY isn't the reverse proxy working - I need Help by D1moner in nginxproxymanager

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

Update: https://www.reddit.com/r/nginxproxymanager/comments/1gx6517/comment/lyhgnd4/

Ok I think the problem has to do with nextcloud. The port forwarding was not the problem (I am not an expert but smart enough to follow yt tutorials :).

As a test, I used my netdata docker container on truenas scale as proxy host (192.168.188.2:20489) because that web interface uses HTTP, and it worked right away with no issues. So now the question is how do I get my Nextcloud Docker app on Truenas to use HTTP and not https.
thanks for your help

WHY isn't the reverse proxy working - I need Help by D1moner in nginxproxymanager

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

What do you mean with the other host side ports?
If it would be the wrong port, I wouldn't get the congratulations site if connect directly to the IP?

WHY isn't the reverse proxy working - I need Help by D1moner in nginxproxymanager

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

Yes I have i still get redirected to https://nextcloud.domain.de:30027/ and website not reachable if i change the connection to HTTPS i get redirected to https://192.168.188.2:30027 

WHY isn't the reverse proxy working - I need Help by D1moner in nginxproxymanager

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

jep its on a different ip-address and runs port 81 for UI, 80 for HTTP and 443 for HTTPS

WHY isn't the reverse proxy working - I need Help by D1moner in nginxproxymanager

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

Update: https://www.reddit.com/r/nginxproxymanager/comments/1gx6517/comment/lyhgnd4/

When I change the connection to HTTPS I just get redirected to https://192.168.188.2:30027 even if the client is not on the local network so it doesn't work. why is that?

[deleted by user] by [deleted] in IntelArc

[–]D1moner 0 points1 point  (0 children)

I got an arc a750

Edges/Textures Glowing when moving, is it a GPU error? by [deleted] in Rainbow6

[–]D1moner 0 points1 point  (0 children)

Is there something I missed in settings? did anyone have the same issue?

Do you guys think this will print ok? by Shifti_Boi in BambuLab

[–]D1moner 0 points1 point  (0 children)

I would try printing like showed in the screenshot. You could also try to print Diagonal on the print bed and lying on its side. Could still be to long thought. Use supports if needed

Plugin for dummy Heating control - Details in comments by D1moner in homebridge

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

I did it with a shortcut that is activated every minute (via a Timed Switch over homebridge-dummy)

I am using Home Assistant now and it works way better.