• Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Search
  • Register
  • Login
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.5k 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.
  • F
    frankz
    last edited by Aug 10, 2024, 5:40 AM

    Hello everyone, thanks to the help of the forum, my nextcloud with pfsense and haproxy works almost perfectly ... I believe that in addition to the attached configuration that allows the redirect of hotv and cardav is missing something, as some clients who use the nextcloud app, report the invalid json error returned by the nextcloud server. I tried to search the internet for this problem that some users have scored, but no solution. For example, if I use the nexcloud app on iphone, it all works, but by browsing the contents of nexcloud folders if I try to open a video alerts me the error that can not open the video file listed the full path. Synchronization is good for image files, but if I try to open pdf or other it crashes. So how from attachment is missing something to add?Screenshot 2024-08-10 alle 07.34.39.png

    V 1 Reply Last reply Aug 10, 2024, 11:24 AM Reply Quote 0
    • V
      viragomann @frankz
      last edited by Aug 10, 2024, 11:24 AM

      @frankz
      Why don't you just forward the whole domain and do the rewrite stuff on the backend server? There are many examples in the web for Apache and NGINX.

      F 1 Reply Last reply Aug 10, 2024, 12:01 PM Reply Quote 0
      • F
        frankz @viragomann
        last edited by frankz Aug 10, 2024, 12:02 PM Aug 10, 2024, 12:01 PM

        @viragoman You could point me some concrete examples so that I can better understand what you mean. Screenshot 2024-08-10 alle 14.02.27.png

        V 1 Reply Last reply Aug 10, 2024, 1:50 PM Reply Quote 0
        • V
          viragomann @frankz
          last edited by Aug 10, 2024, 1:50 PM

          @frankz
          I run Nextcloud on Apache and have this in the vhost conf file for rewriting the paths:

           <IfModule mod_rewrite.c>
             RewriteEngine on
             RewriteRule ^/\.well-known/host-meta /public.php?service=host-meta [QSA,L]
             RewriteRule ^/\.well-known/host-meta\.json /public.php?service=host-meta-json [QSA,L]
             RewriteRule ^/\.well-known/carddav /remote.php/dav [R=301,L]
             RewriteRule ^/\.well-known/caldav /remote.php/dav [R=301,L]
             RewriteRule ^/\.well-known/webfinger /index.php/.well-known/webfinger [R=301,L]
             RewriteRule ^/\.well-known/nodeinfo /index.php/.well-known/nodeinfo [R=301,L]
           </IfModule>
          
          

          The rewrite module has to be enabled in Apache.

          As you can see, there are some in addition to the carddav and caldav paths. You can add these also in HAproxy, but if you do it on the backend server you can remove the "http-request set path" rules.

          F 1 Reply Last reply Aug 10, 2024, 2:45 PM Reply Quote 0
          • F
            frankz @viragomann
            last edited by Aug 10, 2024, 2:45 PM

            @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 Aug 10, 2024, 6:39 PM Reply Quote 0
            • V
              viragomann @frankz
              last edited by Aug 10, 2024, 6:39 PM

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

              F 1 Reply Last reply Aug 10, 2024, 7:30 PM Reply Quote 0
              • F
                frankz @viragomann
                last edited by Aug 10, 2024, 7:30 PM

                @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 Aug 11, 2024, 7:25 PM Reply Quote 0
                • V
                  viragomann @frankz
                  last edited by Aug 11, 2024, 7:25 PM

                  @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

                  F 1 Reply Last reply Aug 12, 2024, 8:25 AM Reply Quote 0
                  • V
                    VioletDragon
                    last edited by Aug 11, 2024, 7:32 PM

                    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
                    • F
                      frankz @viragomann
                      last edited by Aug 12, 2024, 8:25 AM

                      @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

                      V 1 Reply Last reply Aug 12, 2024, 10:40 AM Reply Quote 0
                      • V
                        VioletDragon @frankz
                        last edited by VioletDragon Aug 12, 2024, 10:42 AM Aug 12, 2024, 10:40 AM

                        @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

                        F 1 Reply Last reply Aug 12, 2024, 2:28 PM Reply Quote 0
                        • F
                          frankz @VioletDragon
                          last edited by Aug 12, 2024, 2:28 PM

                          @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

                          V 1 Reply Last reply Aug 12, 2024, 8:46 PM Reply Quote 0
                          • V
                            VioletDragon @frankz
                            last edited by Aug 12, 2024, 8:46 PM

                            @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

                            F 2 Replies Last reply Aug 13, 2024, 4:41 AM Reply Quote 0
                            • F
                              frankz @VioletDragon
                              last edited by Aug 13, 2024, 4:41 AM

                              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
                              • F
                                frankz @VioletDragon
                                last edited by Aug 13, 2024, 11:23 AM

                                @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

                                V 1 Reply Last reply Aug 13, 2024, 9:11 PM Reply Quote 0
                                • V
                                  VioletDragon @frankz
                                  last edited by Aug 13, 2024, 9:11 PM

                                  @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 Aug 14, 2024, 9:35 AM

                                    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.

                                    F 1 Reply Last reply Aug 14, 2024, 6:05 PM Reply Quote 0
                                    • F
                                      frankz @viragomann
                                      last edited by Aug 14, 2024, 6:05 PM

                                      @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 Aug 14, 2024, 9:34 PM Reply Quote 0
                                      • V
                                        viragomann @frankz
                                        last edited by Aug 14, 2024, 9:34 PM

                                        @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.

                                        F 1 Reply Last reply Aug 16, 2024, 12:57 PM Reply Quote 1
                                        • F
                                          frankz @viragomann
                                          last edited by Aug 16, 2024, 12:57 PM

                                          @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

                                          V 1 Reply Last reply Aug 16, 2024, 11:40 PM Reply Quote 0
                                          20 out of 23
                                          • First post
                                            20/23
                                            Last post
                                          Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.
                                            This community forum collects and processes your personal information.
                                            consent.not_received