• Please make sure you are familiar with the forum rules. You can find them here: https://forums.tripwireinteractive.com/index.php?threads/forum-rules.2334636/

Server Uncapping Map/Mutator Upload Speed on Dedicated Server

dgall

FNG / Fresh Meat
Jan 22, 2015
1
0
Hello,

I'm looking to lift the ~10KB/s upload cap on my dedicated. Apparently the two rate related settings in the killingfloor.ini do not affect this.

To reiterate, I don't want to setup a redirect. I'm looking to simply remove (or alter) the upload cap from a dedicated.

Thank you.
 
If you don't want to setup external redirect, why not put one up locally, if you have bandwith for that?

If you use Linux server then you can set up http server as simply as navigating to folder with .uz2 files and then run following command: python -m SimpleHTTPServer 3128 (or any other port you want it to be).

Then you can access files in browser: http//address:3128

I'm not sure how good it can handle big loads of traffic.

http://www.pythonforbeginners.com/modules-in-python/how-to-use-simplehttpserver/

FTP server is not much harder either.
 
Upvote 0
Hello, you can use Python simple HTTP server.

Python SimpleHTTPServer module is a convenient tool. You can use the Python SimpleHTTPServer to turn any directory into a simple HTTP web server. SimpleHTTPServer module that comes with a simple HTTP server that provides standard GET and HEAD request handlers.


One advantage of the built-in HTTP server is that you don’t have to install and configure anything. The only thing that you need is to have Python installed.

https://appdividend.com/2019/02/06/...r-tutorial-with-example-http-request-handler/

The FTP server is not much harder either.
 
Upvote 0