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
  • Brite
  • 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. App Wishlist
  3. BTCpayserver

BTCpayserver

Scheduled Pinned Locked Moved App Wishlist
59 Posts 19 Posters 6.9k Views 21 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.
  • nostrdevN nostrdev

    Ok - pushed both repos to the playground (seemed the most suitable place) and raised first PR (looks like push to main is not possible, nor is merging)

    https://git.cloudron.io/playground/btcpayserver/-/merge_requests/1

    girishG Offline
    girishG Offline
    girish
    Staff
    wrote last edited by
    #49

    @nostrdev hey thanks! you should be the maintainer of the repo now.

    At some point , someone in the team will have to have a look at the package . I have no ETA for this atm but there is a task for @vladimir.d internally for this.

    1 Reply Last reply
    5
    • L Offline
      L Offline
      LoudLemur
      wrote last edited by
      #50

      BTC Pay Server - what is the latest? We need it!

      @timconsidine, is this application on your radar?

      timconsidineT 1 Reply Last reply
      3
      • L LoudLemur

        BTC Pay Server - what is the latest? We need it!

        @timconsidine, is this application on your radar?

        timconsidineT Offline
        timconsidineT Offline
        timconsidine
        App Dev
        wrote last edited by timconsidine
        #51

        @LoudLemur I’m lacking decent internet for a week but will look when I can.
        If @vladimir.d is on the case, I’ve every confidence he will do a great job

        1 Reply Last reply
        3
        • nostrdevN Offline
          nostrdevN Offline
          nostrdev
          wrote last edited by
          #52

          We updated the btcpayserver repo today to use the latest version (2.2.0) and fixed a CSP issue in the nginx.conf

          timconsidineT 1 Reply Last reply
          2
          • timconsidineT Offline
            timconsidineT Offline
            timconsidine
            App Dev
            wrote last edited by timconsidine
            #53
            This post is deleted!
            1 Reply Last reply
            0
            • nostrdevN nostrdev

              We updated the btcpayserver repo today to use the latest version (2.2.0) and fixed a CSP issue in the nginx.conf

              timconsidineT Offline
              timconsidineT Offline
              timconsidine
              App Dev
              wrote last edited by
              #54

              @nostrdev I added btcpayserver to the list of custom apps that can be deployed using https://ccai.appx.uk.

              It installed fine, but I am getting a blank screen when I first visit the domain and am routed to /register.

              Cloudron logs for the installed app show :

              ug 24 22:07:24 fail: Microsoft.AspNetCore.Server.Kestrel: Connection id "0HNF3A7ITPD1Q", Request id "0HNF3A7ITPD1Q:00000001": An unhandled exception was thrown by the application.
              Aug 24 22:07:24 --- End of inner exception stack trace ---
              Aug 24 22:07:24 --- End of stack trace from previous location ---
              Aug 24 22:07:24 --- End of stack trace from previous location ---
              Aug 24 22:07:24 --- End of stack trace from previous location ---
              Aug 24 22:07:24 --- End of stack trace from previous location ---
              Aug 24 22:07:24 ---> System.IO.IOException: The configured user limit (128) on the number of inotify instances has been reached, or the per-process limit on the number of open file descriptors has been reached.
              

              Any thoughts ?

              1 Reply Last reply
              1
              • robiR Offline
                robiR Offline
                robi
                wrote last edited by
                #55

                Microsoft code?

                Conscious tech

                1 Reply Last reply
                0
                • nostrdevN Offline
                  nostrdevN Offline
                  nostrdev
                  wrote last edited by
                  #56

                  We suspect this is an issue with the host machine

                  You can test by running the following (will reset on next boot):

                  sudo sysctl fs.inotify.max_user_instances=512  # Or higher, e.g., 1024
                  sudo sysctl fs.inotify.max_user_watches=524288  # Increase this too if needed
                  

                  For permanent fix:

                  • Edit or create /etc/sysctl.conf

                  insert / update:

                  fs.inotify.max_user_instances=512
                  fs.inotify.max_user_watches=524288
                  

                  Then apply:

                  sudo sysctl -p

                  timconsidineT 1 Reply Last reply
                  0
                  • nostrdevN Offline
                    nostrdevN Offline
                    nostrdev
                    wrote last edited by
                    #57

                    That web app looks cool! Is it self-hostable? Thanks for adding btcpay..

                    Remember that BTCPay also requires BTC Core (or Knots), or at least access to an instance somewhere

                    timconsidineT 1 Reply Last reply
                    0
                    • nostrdevN nostrdev

                      That web app looks cool! Is it self-hostable? Thanks for adding btcpay..

                      Remember that BTCPay also requires BTC Core (or Knots), or at least access to an instance somewhere

                      timconsidineT Offline
                      timconsidineT Offline
                      timconsidine
                      App Dev
                      wrote last edited by
                      #58

                      @nostrdev said in BTCpayserver:

                      That web app looks cool! Is it self-hostable?

                      Yes, if you're referring to CCAI
                      You can actually use the deployed version at https://ccai.appx.uk to install CCAI onto your own Cloudron server.
                      Or you do it manually (docker build, docker push, cloudrin install) by cloning the repo

                      1 Reply Last reply
                      0
                      • nostrdevN nostrdev

                        We suspect this is an issue with the host machine

                        You can test by running the following (will reset on next boot):

                        sudo sysctl fs.inotify.max_user_instances=512  # Or higher, e.g., 1024
                        sudo sysctl fs.inotify.max_user_watches=524288  # Increase this too if needed
                        

                        For permanent fix:

                        • Edit or create /etc/sysctl.conf

                        insert / update:

                        fs.inotify.max_user_instances=512
                        fs.inotify.max_user_watches=524288
                        

                        Then apply:

                        sudo sysctl -p

                        timconsidineT Offline
                        timconsidineT Offline
                        timconsidine
                        App Dev
                        wrote last edited by
                        #59

                        @nostrdev said in BTCpayserver:

                        We suspect this is an issue with the host machine

                        Thank you.
                        Will investigate

                        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