I have a client who have built a file upload system for public use.
This is not a good idea but I want to tell the client "Hey, my server doesn't allow you to use this type of system".
Instead I want to limit the network bandwidth (KB/s) to only the file upload system without telling the client.
I have found some tutorials and one of them is rate_limit module.
This is lucky that I already have this in my Apache.
If you manually modify the client's file, the client may notice ...
Either he will report someone might just hacked into his account or he knows what the trick is and manually delete it.
I need to find a better way that he cannot modify by himself and I don't need to notify him.
Maybe the custom httpd.conf in DirectAdmin can do the job but I am unfamiliar with this.
Also I have a nginx proxy in DirectAdmin.
So how to make the trick working? (Where should I put into?)
Thanks for helping me saving network bandwidth and I don't need to notify him in advanced.
This is not a good idea but I want to tell the client "Hey, my server doesn't allow you to use this type of system".
Instead I want to limit the network bandwidth (KB/s) to only the file upload system without telling the client.
I have found some tutorials and one of them is rate_limit module.
This is lucky that I already have this in my Apache.
If you manually modify the client's file, the client may notice ...
Either he will report someone might just hacked into his account or he knows what the trick is and manually delete it.
I need to find a better way that he cannot modify by himself and I don't need to notify him.
Maybe the custom httpd.conf in DirectAdmin can do the job but I am unfamiliar with this.
Also I have a nginx proxy in DirectAdmin.
So how to make the trick working? (Where should I put into?)
btw, 400 equals to 400KB/sSetOutputFilter RATE_LIMIT
SetEnv rate-limit 400
Thanks for helping me saving network bandwidth and I don't need to notify him in advanced.