Netgate Discussion Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Search
    • Register
    • Login

    Probable parameter missing haproxy and nextcloud

    Scheduled Pinned Locked Moved Cache/Proxy
    23 Posts 3 Posters 1.1k Views
    Loading More Posts
    • 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.
    • frankzF
      frankz @viragomann
      last edited by

      @viragomann Thanks for your instructions. I use Nextcloud on a cluster shape trash nethserver version 8 , the nextcloud server is an APP, managed with podman . I have the skills stop here , but thanks to your instructions I try to ask in the forum how to do it according to your example . I also don’t know if he uses Apaches, but I believe ngix . Thank you for the time you have dedicated to me.

      V 1 Reply Last reply Reply Quote 0
      • V
        viragomann @frankz
        last edited by

        @frankz
        If you have no access to the web server you can achieve the same with HAproxy rules on pfSense for sure.

        frankzF 1 Reply Last reply Reply Quote 0
        • frankzF
          frankz @viragomann
          last edited by

          @viragomann Thank you, but how could I add these rules on haproxy? I guess they should be added below to what I showed in the image.

          V 1 Reply Last reply Reply Quote 0
          • V
            viragomann @frankz
            last edited by

            @frankz
            I'm not an expert on HAproxy, I just did some settings to aim my purposes yet.
            But I'll try to translate the rules:

               RewriteRule ^/\.well-known/carddav /remote.php/dav [R=301,L]
               RewriteRule ^/\.well-known/caldav /remote.php/dav [R=301,L]
            

            Vou have already these two rule. So lets go on with the others.

               RewriteRule ^/\.well-known/host-meta\.json /public.php?service=host-meta-json [QSA,L]
            

            Create an ACL, name = NCjson, "Path starts with", value = .well-known/host-meta.json
            Add a rule "http-request set uri",
            fmt = https://%[req.hdr(Host)]/public.php?service=host-meta-json&%[query]
            Condition acl names = NCjson

            This assumes, that you Nextcloud instance uses TLS, otherwise type "http" for the scheme.

               RewriteRule ^/\.well-known/host-meta /public.php?service=host-meta [QSA,L]
            

            Create an ACL, name = NCmeta, "Path starts with", value = .well-known/host-meta
            Add a rule "http-request set uri",
            fmt = https://%[req.hdr(Host)]/public.php?service=host-meta&%[query]
            Condition acl names = NCmeta

               RewriteRule ^/\.well-known/webfinger /index.php/.well-known/webfinger [R=301,L]
            

            Create an ACL, name = NCwebfinger, "Path starts with", value = .well-known/webfinger
            Add a rule "http-request set path",
            fmt = /index.php/.well-known/webfinger
            Condition acl names = NCwebfinger

               RewriteRule ^/\.well-known/nodeinfo /index.php/.well-known/nodeinfo [R=301,L]
            

            Create an ACL, name = NCnodeinfo, "Path starts with", value = .well-known/nodeinfo
            Add a rule "http-request set path",
            fmt = /index.php/.well-known/nodeinfo
            Condition acl names = NCnodeinfo

            frankzF 1 Reply Last reply Reply Quote 0
            • VioletDragonV
              VioletDragon
              last edited by

              Sounds like a re-write rule. You need to configure rewrites on Haproxy backend Pass thru section.

              
              acl url_discovery path /.well-known/caldav /.well-known/carddav
              http-request redirect location /remote.php/dav/ code 301 if url_discovery
              
              
              1 Reply Last reply Reply Quote 0
              • frankzF
                frankz @viragomann
                last edited by

                @viragomann Thanks for transcribeding my rgole. At the moment I have inserted , but I do not see any improvement for synchronization , also as from the image you see that some directives are not supported ...
                Screenshot 2024-08-12 alle 10.22.59.png Screenshot 2024-08-12 alle 10.24.58.png

                VioletDragonV 1 Reply Last reply Reply Quote 0
                • VioletDragonV
                  VioletDragon @frankz
                  last edited by VioletDragon

                  @frankz What are you using ? LAMP or LEMP ? What guide did you follow to configure NextCloud ? I’ve deployed NextCloud with both LEMP and LAMP stack. If you go to Settings -> Overview do you see any errors ?

                  You are putting the directives in wrong location. Haproxy -> Backend -> Nextcloud Server Backup -> Backend Pass-Thru.

                  Regards

                  frankzF 1 Reply Last reply Reply Quote 0
                  • frankzF
                    frankz @VioletDragon
                    last edited by

                    @VioletDragonHoping that the google translation works well .... I inserted as in the attached image. The errors I receive are the difficulty in synchronizing the files that sometimes fast sometimes remains stalled. My nextcloud is installed on a nethserver 8 server as an APP, using podman similar to docker.Screenshot 2024-08-12 alle 16.24.42.png Screenshot 2024-08-12 alle 16.27.32.png

                    VioletDragonV 1 Reply Last reply Reply Quote 0
                    • VioletDragonV
                      VioletDragon @frankz
                      last edited by

                      @frankz Urmm ok. Does it use LEMP or LAMP stack? Which version of Nextcloud is it? Need to know more information of Server side configuration, as I don’t use Docker or Podman for NextCloud it’s hard to say right now. Better to build it from scratch with LAMP personally.

                      Is pfsense + Haproxy on the same machine ? Virtualised or Bare metal ?

                      Regards

                      frankzF 2 Replies Last reply Reply Quote 0
                      • frankzF
                        frankz @VioletDragon
                        last edited by

                        I imagined , nextcloud is integrated or better installed as an app . It is not a stand-alone server. Anyway, thank you the same for your intervention. Thank you .

                        1 Reply Last reply Reply Quote 0
                        • frankzF
                          frankz @VioletDragon
                          last edited by

                          @VioletDragon This is the error that gives me the linux app when I try to connect..Screenshot 2024-08-13 alle 13.21.42.png

                          VioletDragonV 1 Reply Last reply Reply Quote 0
                          • VioletDragonV
                            VioletDragon @frankz
                            last edited by

                            @frankz Looks like a Server Configuration issue more than anything, I would recommend building NextCloud yourself using Nextclouds proper Configuration https://docs.nextcloud.com/server/latest/admin_manual/installation/source_installation.html

                            It's hard to know what the problem is as the Provider would of configured it, we don't know how they built it.

                            Regards

                            1 Reply Last reply Reply Quote 1
                            • V
                              viragomann
                              last edited by

                              Or find out a way to configure your current web server.

                              Also you can consider to install Nextcloud AIO (all in one). It's based on docker and pretty easy to set up and everything is preset properly already.

                              frankzF 1 Reply Last reply Reply Quote 0
                              • frankzF
                                frankz @viragomann
                                last edited by

                                @viragomann I thank you for your suggestion , but for a matter of principle I have to understand what this malformed json problem generates . Thank you for the time you have dedicated to me.

                                V 1 Reply Last reply Reply Quote 0
                                • V
                                  viragomann @frankz
                                  last edited by

                                  @frankz said in Probable parameter missing haproxy and nextcloud:

                                  but for a matter of principle I have to understand what this malformed json problem generates

                                  Without access to the logs of the backend, that's hard to say, however.
                                  You should know, what's arriving at the backend server.

                                  frankzF 1 Reply Last reply Reply Quote 1
                                  • frankzF
                                    frankz @viragomann
                                    last edited by

                                    @viragomann Hi here are some log strings.....

                                    2024-08-16T14:49:22+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:49:21 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:49:22+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:49:21 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:49:22+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:49:21 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:49:22+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:49:22 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:49:31+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:49:31 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:49:40+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:49:40 +0000 "GET /ocs/v1.php" 200
                                    2024-08-16T14:49:49+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:49:49 +0000 "GET /ocs/v2.php" 304
                                    2024-08-16T14:49:51+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:49:51 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:49:52+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:49:52 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:50:00+02:00 [1:nextcloud2:nextcloud-app] crond: USER www-data pid 577 cmd php -f /var/www/html/cron.php
                                    2024-08-16T14:50:01+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:50:01 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:50:10+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:50:10 +0000 "GET /ocs/v1.php" 200
                                    2024-08-16T14:50:19+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:50:19 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:50:19+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:50:19 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:50:19+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:50:19 +0000 "GET /ocs/v2.php" 304
                                    2024-08-16T14:50:20+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:50:20 +0000 "PUT /ocs/v2.php" 200
                                    2024-08-16T14:50:21+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:50:21 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:50:21+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:50:21 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:50:21+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:50:21 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:50:22+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:50:22 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:50:25+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:50:25 +0000 "PUT /ocs/v2.php" 200
                                    2024-08-16T14:50:26+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:50:26 +0000 "PUT /ocs/v2.php" 200
                                    2024-08-16T14:50:30+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:50:30 +0000 "GET /status.php" 200
                                    2024-08-16T14:50:30+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:50:30 +0000 "GET /index.php" 302
                                    2024-08-16T14:50:30+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:50:30 +0000 "GET /index.php" 200
                                    2024-08-16T14:50:31+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:50:31 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:50:40+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:50:40 +0000 "GET /ocs/v1.php" 200
                                    2024-08-16T14:50:49+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:50:49 +0000 "GET /ocs/v2.php" 304
                                    2024-08-16T14:50:51+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:50:51 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:50:52+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:50:52 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:51:01+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:01 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:51:10+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:51:10 +0000 "GET /ocs/v1.php" 200
                                    2024-08-16T14:51:19+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:51:19 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:51:19+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:51:19 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:51:19+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:19 +0000 "GET /ocs/v2.php" 304
                                    2024-08-16T14:51:21+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:51:21 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:51:21+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:51:21 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:51:21+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:51:21 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:51:22+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:51:22 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:51:31+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:31 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:51:40+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:51:40 +0000 "GET /ocs/v1.php" 200
                                    2024-08-16T14:51:46+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:46 +0000 "POST /index.php" 200
                                    2024-08-16T14:51:49+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:49 +0000 "GET /ocs/v2.php" 304
                                    2024-08-16T14:51:50+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:50 +0000 "GET /index.php" 303
                                    2024-08-16T14:51:50+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:50 +0000 "GET /index.php" 200
                                    2024-08-16T14:51:50+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:50 +0000 "GET /index.php" 200
                                    2024-08-16T14:51:50+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:50 +0000 "GET /index.php" 200
                                    2024-08-16T14:51:50+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:50 +0000 "GET /index.php" 200
                                    2024-08-16T14:51:51+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:51 +0000 "GET /index.php" 200
                                    2024-08-16T14:51:51+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:51 +0000 "GET /index.php" 200
                                    2024-08-16T14:51:51+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:51 +0000 "GET /index.php" 200
                                    2024-08-16T14:51:51+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:51 +0000 "GET /index.php" 200
                                    2024-08-16T14:51:51+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:51 +0000 "GET /index.php" 200
                                    2024-08-16T14:51:51+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:51 +0000 "GET /index.php" 200
                                    2024-08-16T14:51:51+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:51 +0000 "GET /index.php" 200
                                    2024-08-16T14:51:51+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:51:51 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:51:52+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:51:52 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:51:54+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:54 +0000 "GET /index.php" 200
                                    2024-08-16T14:51:58+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:51:58 +0000 "GET /index.php" 200
                                    2024-08-16T14:52:00+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:52:00 +0000 "GET /index.php" 200
                                    2024-08-16T14:52:01+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:52:01 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:52:10+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:52:10 +0000 "GET /ocs/v1.php" 200
                                    2024-08-16T14:52:19+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:52:19 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:52:19+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:52:19 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:52:19+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:52:19 +0000 "GET /ocs/v2.php" 304
                                    2024-08-16T14:52:21+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:52:21 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:52:21+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:52:21 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:52:21+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:52:21 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:52:22+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:52:22 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:52:24+02:00 [1:nextcloud2:nextcloud-redis] 1:M 16 Aug 2024 12:52:24.077 * 100 changes in 300 seconds. Saving...
                                    2024-08-16T14:52:24+02:00 [1:nextcloud2:nextcloud-redis] 1:M 16 Aug 2024 12:52:24.078 * Background saving started by pid 272
                                    2024-08-16T14:52:24+02:00 [1:nextcloud2:nextcloud-redis] 272:C 16 Aug 2024 12:52:24.301 * DB saved on disk
                                    2024-08-16T14:52:24+02:00 [1:nextcloud2:nextcloud-redis] 272:C 16 Aug 2024 12:52:24.302 * RDB: 0 MB of memory used by copy-on-write
                                    2024-08-16T14:52:24+02:00 [1:nextcloud2:nextcloud-redis] 1:M 16 Aug 2024 12:52:24.379 * Background saving terminated with success
                                    2024-08-16T14:52:31+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:52:31 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:52:41+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:52:40 +0000 "GET /ocs/v1.php" 200
                                    2024-08-16T14:52:49+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:52:49 +0000 "GET /ocs/v2.php" 304
                                    2024-08-16T14:52:51+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:52:51 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:52:52+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:52:52 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:53:01+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:01 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:53:10+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:53:10 +0000 "GET /ocs/v1.php" 200
                                    2024-08-16T14:53:12+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:12 +0000 "GET /index.php" 303
                                    2024-08-16T14:53:12+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:12 +0000 "GET /index.php" 200
                                    2024-08-16T14:53:12+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:12 +0000 "GET /index.php" 200
                                    2024-08-16T14:53:19+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:53:19 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:53:19+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:53:19 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:53:19+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:19 +0000 "GET /ocs/v2.php" 304
                                    2024-08-16T14:53:21+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:53:21 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:53:21+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:53:21 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:53:21+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:53:21 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:53:22+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:53:22 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:53:23+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:22 +0000 "POST /index.php" 303
                                    2024-08-16T14:53:23+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:23 +0000 "GET /index.php" 200
                                    2024-08-16T14:53:23+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:23 +0000 "GET /index.php" 200
                                    2024-08-16T14:53:23+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:23 +0000 "GET /index.php" 200
                                    2024-08-16T14:53:23+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:23 +0000 "GET /index.php" 200
                                    2024-08-16T14:53:23+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:23 +0000 "GET /index.php" 200
                                    2024-08-16T14:53:23+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:23 +0000 "GET /index.php" 200
                                    2024-08-16T14:53:23+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:23 +0000 "GET /index.php" 200
                                    2024-08-16T14:53:23+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:23 +0000 "GET /index.php" 200
                                    2024-08-16T14:53:23+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:23 +0000 "GET /index.php" 200
                                    2024-08-16T14:53:23+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:23 +0000 "GET /index.php" 200
                                    2024-08-16T14:53:23+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:23 +0000 "GET /index.php" 200
                                    2024-08-16T14:53:25+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:25 +0000 "POST /index.php" 200
                                    2024-08-16T14:53:28+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:28 +0000 "POST /index.php" 200
                                    2024-08-16T14:53:31+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:31 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:53:40+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:53:40 +0000 "GET /ocs/v1.php" 200
                                    2024-08-16T14:53:49+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:53:49 +0000 "GET /ocs/v2.php" 304
                                    2024-08-16T14:53:51+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:53:51 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:53:52+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:53:52 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:54:01+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:54:01 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:54:10+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:54:10 +0000 "GET /ocs/v1.php" 200
                                    2024-08-16T14:54:19+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:54:19 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:54:19+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:54:19 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:54:19+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:54:19 +0000 "GET /ocs/v2.php" 304
                                    2024-08-16T14:54:21+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:54:21 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:54:21+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:54:21 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:54:21+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:54:21 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:54:22+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:54:22 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:54:31+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:54:31 +0000 "GET /ocs/v2.php" 200
                                    2024-08-16T14:54:40+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:54:40 +0000 "GET /ocs/v1.php" 200
                                    2024-08-16T14:54:49+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:54:49 +0000 "GET /ocs/v2.php" 304
                                    2024-08-16T14:54:51+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:54:51 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:54:52+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 - francesco 16/Aug/2024:12:54:52 +0000 "PROPFIND /remote.php" 207
                                    2024-08-16T14:55:00+02:00 [1:nextcloud2:nextcloud-app] crond: USER www-data pid 578 cmd php -f /var/www/html/cron.php
                                    2024-08-16T14:55:01+02:00 [1:nextcloud2:nextcloud-app] 127.0.0.1 -  16/Aug/2024:12:55:01 +0000 "GET /ocs/v2.php" 200
                                    

                                    Screenshot 2024-08-16 alle 14.53.47.png

                                    VioletDragonV 1 Reply Last reply Reply Quote 0
                                    • VioletDragonV
                                      VioletDragon @frankz
                                      last edited by

                                      @frankz Wait, did you add the domain to config/config.php ?

                                      Looks like a problem with OC. without anymore information I can't help much

                                      Regards

                                      frankzF 1 Reply Last reply Reply Quote 0
                                      • frankzF
                                        frankz @VioletDragon
                                        last edited by

                                        @VioletDragon Hi , if you mean the trusted domain, you will.

                                        VioletDragonV 1 Reply Last reply Reply Quote 0
                                        • VioletDragonV
                                          VioletDragon @frankz
                                          last edited by

                                          @frankz said in Probable parameter missing haproxy and nextcloud:

                                          @VioletDragon Hi , if you mean the trusted domain, you will.

                                          Correct. Trust domain and proxy needs to be added.

                                          Regards

                                          1 Reply Last reply Reply Quote 0
                                          • First post
                                            Last post
                                          Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.