Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
  1. Cloudron Forum
  2. Announcements
  3. What's coming in 4.2

What's coming in 4.2

Scheduled Pinned Locked Moved Announcements
38 Posts 9 Posters 6.6k Views 9 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • yusfY yusf

      It's out!

      Add external LDAP server integration

      This is very good. Now if only the reverse was possible too we'd have ourselves a real symphony. 🙂

      murgeroM Offline
      murgeroM Offline
      murgero
      App Dev
      wrote on last edited by
      #21

      @yusf If you don't mind a bit of a "hack-n-slash" you could open up ports 389 and 636 in iptables to access the cloudron ldap server remotely 🐷

      --
      https://urgero.org
      ~ Professional Nerd. Freelance Programmer. ~

      yusfY 1 Reply Last reply
      1
      • murgeroM murgero

        @yusf If you don't mind a bit of a "hack-n-slash" you could open up ports 389 and 636 in iptables to access the cloudron ldap server remotely 🐷

        yusfY Offline
        yusfY Offline
        yusf
        wrote on last edited by
        #22

        @murgero That sure is filthy but if also IP restricted and/or tunneled it may be okay? 🐽

        murgeroM 1 Reply Last reply
        0
        • yusfY yusf

          @murgero That sure is filthy but if also IP restricted and/or tunneled it may be okay? 🐽

          murgeroM Offline
          murgeroM Offline
          murgero
          App Dev
          wrote on last edited by
          #23

          @yusf You can restrict the port in IPTABLES as well, I don't remember if cloudron uses just IPTables or UFW but here is a rule for both that would work for routing to internal networks only:

          UFW:
          ufw allow from 192.168.1.0/24 to any port 389
          (This allows from the 192.168.1.0 network to TCP/UDP port 389. You can change the word "any" to "tcp" to restrict it to TCP only as well.)

          IPTABLES:
          iptables -I INPUT -p tcp -s 192.168.1.0/24 --dport 389 -j ACCEPT

          Please research what cloudron uses as it's firewall (I am almost positive it is iptables).

          Also note - This is an unsupported modification too.

          Also also note - You can probably make an app that can proxy this connection instead, using a different port, you can proxy to the LDAP server instead. (Say port 1389 as an example). This would probably work better since LDAP clients normally allow you to configure a port to connect to anyway.

          --
          https://urgero.org
          ~ Professional Nerd. Freelance Programmer. ~

          yusfY 1 Reply Last reply
          0
          • murgeroM murgero

            @yusf You can restrict the port in IPTABLES as well, I don't remember if cloudron uses just IPTables or UFW but here is a rule for both that would work for routing to internal networks only:

            UFW:
            ufw allow from 192.168.1.0/24 to any port 389
            (This allows from the 192.168.1.0 network to TCP/UDP port 389. You can change the word "any" to "tcp" to restrict it to TCP only as well.)

            IPTABLES:
            iptables -I INPUT -p tcp -s 192.168.1.0/24 --dport 389 -j ACCEPT

            Please research what cloudron uses as it's firewall (I am almost positive it is iptables).

            Also note - This is an unsupported modification too.

            Also also note - You can probably make an app that can proxy this connection instead, using a different port, you can proxy to the LDAP server instead. (Say port 1389 as an example). This would probably work better since LDAP clients normally allow you to configure a port to connect to anyway.

            yusfY Offline
            yusfY Offline
            yusf
            wrote on last edited by
            #24

            @murgero Thanks! Though very unsupported also very interesting. Thought about the proxy app approach but you know my level id of expertise: not enough. 😆

            murgeroM 1 Reply Last reply
            0
            • yusfY yusf

              @murgero Thanks! Though very unsupported also very interesting. Thought about the proxy app approach but you know my level id of expertise: not enough. 😆

              murgeroM Offline
              murgeroM Offline
              murgero
              App Dev
              wrote on last edited by
              #25

              @yusf Maybe it will be my weekend project this week. Build an LDAP Proxy app for Cloudron.

              I'll hit you up on Matrix if I get something working. 🙂

              --
              https://urgero.org
              ~ Professional Nerd. Freelance Programmer. ~

              iamthefijI 1 Reply Last reply
              2
              • murgeroM murgero

                @yusf Maybe it will be my weekend project this week. Build an LDAP Proxy app for Cloudron.

                I'll hit you up on Matrix if I get something working. 🙂

                iamthefijI Offline
                iamthefijI Offline
                iamthefij
                App Dev
                wrote on last edited by
                #26

                @murgero I’ve been meaning to do the same.

                Should be doable with something like HAProxy, but I wanted to use some better auth mechanism, so I’ve been working on this: https://git.iamthefij.com/iamthefij/dockamole

                The server is essentially just an ssh server that is configured to disallow running commands and only allow port forwarding. The client can be run anywhere and it exposes the ports for you.

                I’m planning to run a server on my Cloudron to forward LDAP and Graphite (hopefully), and then I can deploy a client on my other VPS. I also plan to do the same with my NAS at home so I can have my VPS access it without exposing http access to my home network.

                There are many ways to do this though. 🙂

                fbartelsF 1 Reply Last reply
                1
                • iamthefijI iamthefij

                  @murgero I’ve been meaning to do the same.

                  Should be doable with something like HAProxy, but I wanted to use some better auth mechanism, so I’ve been working on this: https://git.iamthefij.com/iamthefij/dockamole

                  The server is essentially just an ssh server that is configured to disallow running commands and only allow port forwarding. The client can be run anywhere and it exposes the ports for you.

                  I’m planning to run a server on my Cloudron to forward LDAP and Graphite (hopefully), and then I can deploy a client on my other VPS. I also plan to do the same with my NAS at home so I can have my VPS access it without exposing http access to my home network.

                  There are many ways to do this though. 🙂

                  fbartelsF Offline
                  fbartelsF Offline
                  fbartels
                  App Dev
                  wrote on last edited by
                  #27

                  @iamthefij said in What's coming in 4.2:

                  There are many ways to do this though.

                  True. I was more thinking of using stunnel for this.

                  1 Reply Last reply
                  0
                  • yusfY Offline
                    yusfY Offline
                    yusf
                    wrote on last edited by yusf
                    #28

                    @yusf said in What's coming in 4.2:

                    It's out!

                    Nope, it's not out. I've recieved a notification of the new version on one Cloudron but I can't install it yet.

                    1 Reply Last reply
                    0
                    • nebulonN Away
                      nebulonN Away
                      nebulon
                      Staff
                      wrote on last edited by
                      #29

                      It is not out yet due to regressions in the app task management. We are working on this and will announce it when it is really out. Sorry for all those update available notifications which appeared to have been issued in between.

                      1 Reply Last reply
                      1
                      • girishG Offline
                        girishG Offline
                        girish
                        Staff
                        wrote on last edited by
                        #30

                        Alright, we have started rolling out 4.2 slowly. If someone here wants it early, ping us on the chat as always. Thanks for your patience!

                        1 Reply Last reply
                        1
                        • yusfY Offline
                          yusfY Offline
                          yusf
                          wrote on last edited by
                          #31

                          I’ve received another notification saying

                          Cloudron v4.2.5 is available

                          but this update too is nowhere to be found.

                          1 Reply Last reply
                          0
                          • girishG Offline
                            girishG Offline
                            girish
                            Staff
                            wrote on last edited by
                            #32

                            @yusf Did it work out?

                            4.2 is now available for all

                            yusfY 1 Reply Last reply
                            0
                            • girishG girish

                              @yusf Did it work out?

                              4.2 is now available for all

                              yusfY Offline
                              yusfY Offline
                              yusf
                              wrote on last edited by
                              #33

                              @girish It did update, yes. 🎉

                              1 Reply Last reply
                              0
                              • necrevistonnezrN Offline
                                necrevistonnezrN Offline
                                necrevistonnezr
                                wrote on last edited by
                                #34

                                I have one SSD and one HDD in my homeserver running Cloudron 4.2.6 - neither are shown in "Graphs"...

                                1 Reply Last reply
                                0
                                • girishG Offline
                                  girishG Offline
                                  girish
                                  Staff
                                  wrote on last edited by
                                  #35

                                  @necrevistonnezr Can you open a separate thread for that (since I am going to close this release thread and announce 4.2.). Can you also please provide the df -h output in the post. Thanks!

                                  1 Reply Last reply
                                  0
                                  • fbartelsF Offline
                                    fbartelsF Offline
                                    fbartels
                                    App Dev
                                    wrote on last edited by
                                    #36

                                    Hi, I was wondering if there is already some documentation for the external LDAP support. Wanted to see if I could hook my cloudron to the ldap tree exposed from my Univention UCS.

                                    1 Reply Last reply
                                    0
                                    • yusfY Offline
                                      yusfY Offline
                                      yusf
                                      wrote on last edited by
                                      #37

                                      I've this problem with 4.2.x now that makes the memory graph only show app memory usage from my main domain. Reproducable?

                                      murgeroM 1 Reply Last reply
                                      0
                                      • yusfY yusf

                                        I've this problem with 4.2.x now that makes the memory graph only show app memory usage from my main domain. Reproducable?

                                        murgeroM Offline
                                        murgeroM Offline
                                        murgero
                                        App Dev
                                        wrote on last edited by
                                        #38

                                        @yusf My memory graph is seemingly ok, I can see all 3 of my domains in it.

                                        --
                                        https://urgero.org
                                        ~ Professional Nerd. Freelance Programmer. ~

                                        1 Reply Last reply
                                        0
                                        Reply
                                        • Reply as topic
                                        Log in to reply
                                        • Oldest to Newest
                                        • Newest to Oldest
                                        • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Bookmarks
                                          • Search