ngx_http_secure_link_module is installed successfully with nginx 1.17

But the problem is it is not working well.
I have tried several configuration but failed.
Can somebody advise me ngx_http_secure_link_module working example with aaPanel?

Thank you

    mzm

    This is my test result

    When I joined the rule directly, it was not protected.

    I found that the nginx configuration has a rule that takes precedence over the protection rule., I tried to delete it and then I found it is work.


    So please check if there are other locations that are more prioritized than the protection rules you set.

    Sadly not working for videos files such as .mp4 extension. 🙁

      mzm
      Working very well~
      access http://bbb.com/test.mp4

      access http://bbb.com/test.mp4?md5=rSI6PlIwILrb6htMXVq-Dg&expires=1567755314

      This is my configuration

      location / {
              secure_link $arg_md5,$arg_expires;
              secure_link_md5 "$secure_link_expires$uri secret_key";
          if ($secure_link = "") {
              return 403;
              }
          if ($secure_link = "0") {
              return 403;
              }
            if ($request_filename ~* ^.*?\.(mp4)$){
              add_header Content-Disposition attachment;
      		}
          }
        a year later
        6 months later

        I want to Protect my website link by ngx_http_secure_link_module in aaPanel. can anyone help me with complete guidelines and Tutorials? How do I Upload files in aaPanel and How do share links on my website with md5 Nginx ngx_http_secure_link_module's system?