Jump to content

unMaxe

Members
  • Posts

    10
  • Joined

Posts posted by unMaxe

  1. 22 minutes ago, wgstarks said:

    Looks like your Plex docker didn’t backup because it was running at the time the backup occurred and some of the data changed. You should set whatever dockers to stop before backup so this doesn’t happen.

     

    In Appdata Settings I only find under advanced options this field:

    image.thumb.png.3f02efa960afdb65cb90a495c43e334a.png

     

    Is there an other field to change docker stop options?

  2. On 11/23/2019 at 9:32 PM, jbartlett said:

    Did you manually change the default port number to 54777 from 18888? If not, try port 18888.

     

    Did you launch the UI via clicking on the icon and selecting "WebUI"?

     

    image.png.a2db7b8ab621381f47fd4101e6762317.png

    Yes, i tried to install docker with a custom port like below, now i reinstalled with default port works now (only edit port at docker settings dont worked). 

    But now it will run fine.

  3.  

    grafik.png

    For standard ssl 443 port (which works):

     

    port 443 (internet) => 443 to 1621 (router) => ngnix (letsencrypt) "listen 443 ssl" map to nextcloud docker

     

     

    My dream :):

     

    port 51123 (internet) => 51123 to 1621 (router) => ngnix (letsencrypt) "listen 51123 ssl" map to nextcloud docker. I change opposite the other solution above only the nextcloud.subdomain.conf (letsencrypt docker) row "listen 51123 ssl"

     

     

    But I try some different settings. Now I could narrow the problem a litte bit. Problem is the nextcloud "ngnix" settings not letsencrypt docker. I tested to forward port 51123 directly (without reserve proxy (letsencrypt docker) ) to nextcloud => same error: "403 Forbidden nginx/1.16.0" ... so its an config issue in nextcloud docker but where I should config that, I am a litte bit confused now...

     

    Edit:

    OK my "noob" problem solve partially:

    setting in nextcloud config.php under "trusted domain":

     

      'trusted_domains' =>
      array (
        0 => 'xx.xx.xx.xx:51123',   (internal ip)
        1 => 'my.domain.com:51123', (domain)
        2 => 'xx.xx.xx.xx:51123', (external ip)

     

    BUT works only for internal and external ip not for domain!

  4. 6 minutes ago, Toobie said:

    Iam not 100% sure but I think you are on the wrong way.

    If your router is on port 53444 you have to forward the port 53444 to 443.

    I my configuration iam using 1443 as mentioned in one of spaceinvaders video.

    But the config file is still with 443.

     

    Yes I took that into account, my configuration works fine with 443. I had also refer spaceinvaders trutorial :))

     

    I only change port in nextcloud.conf from 443 ssl to 53444 ssl, and router config outside port 443 to 53444, all other config are the same. Router seems not the problem because I get on my web-request to the ngix proxy.

     

     

     

     

     

     

     

     

  5. Hello, works great but now i want to configure reserve proxy with a specific ssl port (standard ssl 443 works fine) for nextcloud.

     

    I tried to change the port in nextcloud.conf but then i get 403 Forbidden nginx/1.16.0 error, what I do wrong? Thank you very much in advance. Router is configured with this port. Standard ssl (443) works.

    server {
        listen 53444 ssl;
        listen [::]:53444 ssl;
    
        server_name cloud.*;
    
        include /config/nginx/ssl.conf;
    
        client_max_body_size 0;
    
        location / {
            include /config/nginx/proxy.conf;
            resolver 127.0.0.11 valid=30s;
            set $upstream_nextcloud nextcloud;
            proxy_max_temp_file_size 2048m;
            proxy_pass https://$upstream_nextcloud:443;
        }
    }


     

  6. Works fine but now i try to set up https. Is this possible to combinine with "letsencrypt"-docker (which have reverse proxy included). I tried to setup in /letsencrypt/nginx/proxy-confs but sadly there are no sample .conf for FileBrowser. Maybe someone have allready config this method?

     

×
×
  • Create New...