Bandwidth limit using virtual hosts template

#1
Hello,

I have a lot of websites (virtual host template) in my current lightspeed.

I want to limit the bandwidth for per Member Virtual Hosts.
In the case of virtual hosts, I found out that I can limit the bandwidth by changing the value of Total Output Bandwidth.

What if I want to use a Virtual Host template to set up something similar to this configuration?
 

serpent_driver

Well-Known Member
#4
Configuration has to be done in Apache style:

Code:
/etc/apache2/conf.d/includes/pre_virtualhost_global.conf
Code:
<IfModule LiteSpeed>
  VhostBandwidthLimit 1024000
</IfModule>
For bandwith limit of 1000KB max.. Not tested, but should work.
 
#5
Configuration has to be done in Apache style:

Code:
/etc/apache2/conf.d/includes/pre_virtualhost_global.conf
Code:
<IfModule LiteSpeed>
  VhostBandwidthLimit 1024000
</IfModule>
For bandwith limit of 1000KB max.. Not tested, but should work.
Thanks, I was able to limit the bandwidth with vHostBandwidthLimit.
It just looks like the value you set multiplied by the worker process is the bandwidth allocated to it.

Thanks for the help.
 
Top