Jump to content

blaine07

Members
  • Posts

    754
  • Joined

  • Last visited

Posts posted by blaine07

  1. Upgrade fine for me. I however don’t think I’ve ever seen so many “BZimage Checksum” errors on a upgrade cycle. Happened to me on my T610 when going into the RCs and had to turn off the setting in Dells that causes issue. 
     

    BZimage thing is concerning. 

  2. Why yes!
     
    I was just trying to fix this, and I think I found the answer.  The container is trying to use NUMA for resource allocation with the host, but is being gated by the default security profile.
     
    To fix:  Edit the container, enable advanced view, and add:
     
    --cap-add=sys_nice
    --cap-add=sys_nice

     
    to Extra Parameters.  Apply and profit.
     
    The seccomp workaround is messy, it disables all the normal security for the container.  The call to mbind is now already gated by CAP_SYS_NICE, but if you want to use it you'll have to tune the security profile for the container.
     
    Hope it helps!
     
    -P


    Worked. Thank you mate!
  3. Why yes!
     
    I was just trying to fix this, and I think I found the answer.  The container is trying to use NUMA for resource allocation with the host, but is being gated by the default security profile.
     
    To fix:  Edit the container, enable advanced view, and add:
     
    --cap-add=sys_nice
    --cap-add=sys_nice

     
    to Extra Parameters.  Apply and profit.
     
    The seccomp workaround is messy, it disables all the normal security for the container.  The call to mbind is now already gated by CAP_SYS_NICE, but if you want to use it you'll have to tune the security profile for the container.
     
    Hope it helps!
     
    -P


    Will try this in a bit. I don’t think error actually hurts anything… other than me because I know it’s there LOL

    Thank you!
  4. 2 minutes ago, A75G said:

    Try adding DB_NAME variable with each databases you have for example: nextcloud,authelia,freshrss,mysql

    Is their not a way to define "all"? (I don't even know names of all the DBs on the MariaDB server it's backing up LOL). I know before version 3.3.2 I was on V2.12.0. On 2.12.0 "backup-now" just grabbed them all. Not sure why that functionality would be depreciated?

     

    (thank you, for the reply!)

  5. I realize that after container has been created this process may vary slightly but is there a way to connect this container to multiple networks?

    There’s a different version of NPM floating around and it supports such. Does this container support it too? If so, how does one set it up after container has already been created? Does the —net flag still need passed through?

    For reference, this is other container, but wondering if this is applicable to this container too:

    aa14866c0e137f4b3409173ec81476f2.png

  6. 3 hours ago, Tolete said:

     

    post updated. new config

    Is this new config supposed to make /admin not available outside LAN? I can't find any difference between what you initially posted for "Admin" and the new admin config?

     

    Also, on bottom of Edit Proxy Host on NPM it says: 

     

     Please note, that any add_header or set_header directives added here will not be used by nginx. You will have to add a custom location '/' and add the header in the custom config there.

     

    The config you have shared includes proxy set header directives? It says they wont work?

  7. 3 minutes ago, Tolete said:

     

    see updated post.

    See my post above about admin panel.

     

    Does this: 

    # Admin Console websocket
    location ^~ /lool/adminws {
      proxy_set_header Upgrade $http_upgrade;
      proxy_set_header Connection "upgrade";
      proxy_http_version 1.1;
      proxy_pass $forward_scheme://$server:$port;
      proxy_set_header Host $http_host;
      proxy_read_timeout 36000s;
    }

     

    need to change because admin URL changed?

     

    EDIT: also, using above, is there a way to make the ADMIN page only accessible internally and not at all outside LAN?

     

     

  8. 3 hours ago, Tolete said:
    took a second look at this got it up and running.
    ncstatus.png.cace2b6a27d52ddaa58f8ba50c259141.png
     
    steps i took--
     
    reinstall/enable 'Nextcloud Office' (5.0.3) app.
     
    ncoffice.png.3d22fb04911f77709ae576dde5bd9041.png
     
    Collabora (latest)- 
    edit container and remove the 'Domain' Variable.
    add  new Variable
    nxc1.png.d6c35fe4d9f0744005ee1a642ca9e0ae.png
    save.
     
    in NginxProxyManager-
    specify https protocol and the server host/ip and port 9980. Also enable Websockets Support.
    On the SSL tab select a new certificate, enable HTTP/2.
    nxp.png.b7c07e8b860bfb953e86aa25ae067516.png
     
    On the Advanced tab, enter:
    # static fileslocation ^~ /loleaflet { proxy_pass $forward_scheme://$server:$port; proxy_set_header Host $http_host;}# WOPI discovery URLlocation ^~ /hosting/discovery { proxy_pass $forward_scheme://$server:$port; proxy_set_header Host $http_host;}# main websocketlocation ~ ^/lool/(.*)/ws$ { proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_http_version 1.1; proxy_pass $forward_scheme://$server:$port; proxy_set_header Host $http_host; proxy_read_timeout 36000s;}# download, presentation and image uploadlocation ~ ^/lool { proxy_pass $forward_scheme://$server:$port; proxy_set_header Host $http_host;}# Admin Console websocketlocation ^~ /lool/adminws { proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_http_version 1.1; proxy_pass $forward_scheme://$server:$port; proxy_set_header Host $http_host; proxy_read_timeout 36000s;}
     

     
    save and test.


    Your pic shows “alliasgroup1”

    Should it be as shown or “aliasgroup1” with ONE “l”?

     

    edit: weird it only does work with TWO “l”. I don’t understand; I don’t see it expressed as anywhere with “alliasgroup” so don’t understand why that works. 🤦🏼‍♂️

×
×
  • Create New...