Lighttpd File Hosting Server

Apr 25, 2008

Any one manage file hosting servers here?

I run file sharing service, bandwidth usage is going up too much, 300 Mbps, anyone know if file hosting sites use bandwidth shaping ? Any recommended settings for lighttpd?

View 1 Replies


ADVERTISEMENT

Optimize Lighttpd For Large File

Apr 14, 2009

So I've recently ordered a Supermicro 4U server with 24x1TB HDs, 64GB RAM and put it in RAID 10. I'm running Debian 5.0 and have installed lighttpd. All the content I serve are video files (AVi, MP4, MKV, OGM) and each file is about 100-500mb in size. I'm wondering how can I optimize lighttpd to get the best performance out of it. I look forward to your replies.

View 14 Replies View Related

Can Not Access Flv File With Lighttpd Using Port 81

May 19, 2009

I am using port 81.

I can access all the files without any issue.

Until today when I check the flv file on other machine,
[url]
It say 404 no found!

I can access other *.jpg *.html file without any problem, but no flv file.

I thought it's firewall issue, but even I turn off firewall, it's still having the same issue.

And I have another computer in the same network, it's fine. they are all windows XP.

View 5 Replies View Related

Lighttpd Force File Download IE

Feb 2, 2008

we are running a file sharing service and use lighttpd as a web server

the problem is that in Internet Explorer are some files i.e. .mpg, .pdf
and others opened directly in the browser

so is there a way to prevent this behavior(to force the browser to
download the file) by setting headers (or something else) in
lighttpd.conf?

View 2 Replies View Related

File Hosting On A Web Server

Oct 24, 2008

is there a way that i can have a web server that runs windows server 2003 and be able to have file hosting on it...so people can upload files to it and be able to access it without having to have a domain name?

View 10 Replies View Related

Lighttpd Hosting Videos :: Cannot Display Page

Aug 31, 2008

we have a site, x.com and it hosts videos, we want to serve these videos using lighty, however, we can't seem to get it to work at all, The current setup is Cpanel with Apache so we want Cpanel + Lighty(only for flvideo.x.com) and Apache for everything else, im running lighty on port 8080, we've tried different ports for the sake of trial and error.

This is the configuration that we have:

# lighttpd configuration file
#
# use it as a base for lighttpd 1.0.0 and above
#
# $Id: lighttpd.conf,v 1.7 2004/11/03 22:26:05 weigon Exp $

############ Options you really have to take care of
####################

## modules to load
# at least mod_access and mod_accesslog should be loaded
# all other module should only be loaded if really neccesary
# - saves some time
# - saves memory
server.modules = (
# "mod_rewrite",
# "mod_redirect",
# "mod_alias",
"mod_access",
# "mod_cml",
# "mod_trigger_b4_dl",
# "mod_auth",
# "mod_status",
# "mod_setenv",
# "mod_fastcgi",
# "mod_proxy",
# "mod_simple_vhost",
# "mod_evhost",
"mod_userdir",
# "mod_cgi",
# "mod_compress",
# "mod_ssi",
# "mod_usertrack",
# "mod_expire",
# "mod_secdownload",
# "mod_rrdtool",
"mod_accesslog" )

## a static document-root, for virtual-hosting take look at the
## server.virtual-* options
server.document-root = "/home2/x/www/flvideo/"

## where to send error-messages to
server.errorlog = "/var/log/lighttpd/error.log"

# files to check for if .../ is requested
index-file.names = ( "index.php", "index.html",
"index.htm", "default.htm" )

## set the event-handler (read the performance section in the manual)
# server.event-handler = "freebsd-kqueue" # needed on OS X

# mimetype mapping
mimetype.assign = (
".rpm" => "application/x-rpm",
".pdf" => "application/pdf",
".sig" => "application/pgp-signature",
".spl" => "application/futuresplash",
".class" => "application/octet-stream",
".ps" => "application/postscript",
".torrent" => "application/x-bittorrent",
".dvi" => "application/x-dvi",
".gz" => "application/x-gzip",
".pac" => "application/x-ns-proxy-autoconfig",
".swf" => "application/x-shockwave-flash",
".tar.gz" => "application/x-tgz",
".tgz" => "application/x-tgz",
".tar" => "application/x-tar",
".zip" => "application/zip",
".mp3" => "audio/mpeg",
".m3u" => "audio/x-mpegurl",
".wma" => "audio/x-ms-wma",
".wax" => "audio/x-ms-wax",
".ogg" => "application/ogg",
".wav" => "audio/x-wav",
".gif" => "image/gif",
".jar" => "application/x-java-archive",
".jpg" => "image/jpeg",
".jpeg" => "image/jpeg",
".png" => "image/png",
".xbm" => "image/x-xbitmap",
".xpm" => "image/x-xpixmap",
".xwd" => "image/x-xwindowdump",
".css" => "text/css",
".html" => "text/html",
".htm" => "text/html",
".js" => "text/javascript",
".asc" => "text/plain",
".c" => "text/plain",
".cpp" => "text/plain",
".log" => "text/plain",
".conf" => "text/plain",
".text" => "text/plain",
".txt" => "text/plain",
".dtd" => "text/xml",
".xml" => "text/xml",
".mpeg" => "video/mpeg",
".mpg" => "video/mpeg",
".mov" => "video/quicktime",
".qt" => "video/quicktime",
".avi" => "video/x-msvideo",
".asf" => "video/x-ms-asf",
".asx" => "video/x-ms-asf",
".wmv" => "video/x-ms-wmv",
".bz2" => "application/x-bzip",
".tbz" => "application/x-bzip-compressed-tar",
".tar.bz2" => "application/x-bzip-compressed-tar",
# default mime type
"" => "application/octet-stream",
)

# Use the "Content-Type" extended attribute to obtain mime type if
possible
mimetype.use-xattr = "enable"


## send a different Server: header
## be nice and keep it at lighttpd
server.tag = "lighttpd"

#### accesslog module
accesslog.filename = "/var/log/lighttpd/access.log"

## deny access the file-extensions
#
# ~ is for backupfiles from vi, emacs, joe, ...
# .inc is often used for code includes which should in general not be
part
#### accesslog module
accesslog.filename = "/var/log/lighttpd/access.log"

## deny access the file-extensions
#
# ~ is for backupfiles from vi, emacs, joe, ...
# .inc is often used for code includes which should in general not be
part
# of the document-root
url.access-deny = ( "~", ".inc" )

$HTTP["url"] =~ ".pdf$" {
server.range-requests = "disable"
}

##
# which extensions should not be handle via static-file transfer
#
# .php, .pl, .fcgi are most often handled by mod_fastcgi or mod_cgi
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )

######### Options that are good to be but not neccesary to be changed
#######

## bind to port (default: 80)
server.port = 8080

## bind to localhost (default: all interfaces)
server.bind = "flvideo.x.com"

This is the weird part, if we lynx x.com:8080 it will display the html file inside the docroot, if i go x.com:8080 on firefox or internet explorer the connection gets reset and internet explorer throws a "cannot display page" error,

View 1 Replies View Related

File Hosting Site Server

Mar 26, 2009

I am currently working on a File hosting site like sendspace, megaupload (Not that big, only a small site for college students use it). I am wondering which hosting company out there take high disk space and unlimited brandwidth.

View 14 Replies View Related

File Hosting Dedicated Server

Oct 26, 2008

One of my Clients asked me about what kind of server would be great and can handle File hosting website like Rapidshare, Megaupload and Adrive?

He just wants to start it here in Arab market Specially [Egypt, Saudi Arabia, Kuwait, UAE] in hope to do something special with good service.

He will give the visitors two options:-

Free uploading max: 100 MB per file.

Premium uploading max: 1000 MB per file.

Also he asked which kind of file uploading script can handle this. with high fast upload/download speed

About the budget for the first 3 months he want to pay max 250/m after this, if everything is okay he can pay up to 500~1000$ per month. Nop By the way... most of the

Arab market still looking for Rapidshare & 4shared alternatives. As well as they need website in Arabic language with easy steps to use.

Server should come with cPanel/WHM
High Premium Bandwidth.... [Most Important]
Managed will be wonderful but unmanaged is ok.

View 14 Replies View Related

Need Dedicated Server For File Hosting Site

May 21, 2009

i want to start a file hosting site like megaupload etc. So need a good bandwitch and storage for beggining and if it grows up then upgrade.

Would you recommend buying Dual Core Cpu?Or Pentium 4 for beggining?

View 9 Replies View Related

Compare Dedicated Server Companies/File Hosting Services

Apr 11, 2008

I own a semi-popular downloads website which I host on one server while the actual files/downloads are hosted on another server. This downloads server is very low-end ( AMD Sempron 3000, 1 GB RAM, 120 GB HD, CentOS with lighttpd, no control panel, etc.) and is connected via a 100Mbit shared line with a 3300GB bandwidth limit. Originally, I had it on a 10Mbit dedicated unmetered line but I hoped that by upgrading to the 100Mbit, I'd get better burst speeds, faster transfers/downloads, and a bit more bandwidth in general. Well, this doesn't seem to be the case so I'm looking for a new server or file hosting service hopefully on a better and faster network.

Right now, I'm considering the following companies/services:

* Profithost.net - Decent Dedicated server with nice bandwidth
* Redhostservers.com - OK Dedicated server with awesome bandwidth
* Server4you.com - Great Dedicated server with good bandwidth

* File-services.com - Decently priced pure file hosting with OK features
* MegaUpload Business account with Hotlink Quota - Decently priced pure file hosting with nice features

View 14 Replies View Related

Lighttpd - For My Server

Jun 17, 2008

i have small - mid size forum

1) 25k members with 100 - 125 members / guest being online at all times. about 400,000 page views per month
2) software pages static html about 200,000 page views per month.
3) a script library which get about 200,000 page views per month
4) i get about 2000 - 2500 software downloads per day. each download between 1mb to 3 mb give or take

i would estimate a total of 1 million page views per month...

a) i am using Apache right now would lighttpd help?
b) if yes, how does one go about switching from Apache to Lighthtpd
c) is it easy to manage and optimize lighttpd?
d) can i just ask for lighttpd to be installed as default by any hosting company out there?
e) does lighttpd support cPanel?

currently i am on a AMD Athlon(tm) 64 X2 Dual Core Processor 3800+(2 Ghz) with 2 GB RAM.

my server loads are sky high - anywhere between 10, 15 and 20.

View 2 Replies View Related

Server-status Lighttpd

Oct 12, 2007

How would I enable and use server-status with lighttpd?

I've heard that this may help with this problem that I'm facing.

View 5 Replies View Related

Lighttpd / Apache - Restarting The Server

May 30, 2009

We've been thinking about writing our own hosting control panel for our own
"tight" hosting setup, so that can alter the panel just to our needs without relying on updates from anybody else.

To read new configurations in Lighttpd or Apache, as far as I know, requires the software to be restarted (for example service apache restart). Are there any negative effects of this, I'm assuming that whilst being restarted there is a small amount of time during which the software is "down" and websites can't be accessed during that period (probably <1 second). Am I correct?

What is the best way to reload configurations into these http servers without service interruption? I notice that DirectAdmin seems to just restart Apache on any function that alters the configuration file - for example adding a new user.

View 4 Replies View Related

Lighttpd 500 Internal Server Error

Jul 19, 2009

I have useing lighttpd for my website,my site Only picture.

but if access peak , There are often 500 Internal Server Error,

View 10 Replies View Related

How To Pretect Hotlink On Lighttpd Server

Jan 25, 2008

I found someone can use the following script. But I dont know where to put those script. Is it in htaccess like apache?

$HTTP["referer"] !~ "^($|[url]
$HTTP["referer"] !~ "^($|[url]
url.redirect = (
"(/.*.(JPG|jpe?g|png|gif))$" => [url]
}
}

View 3 Replies View Related

Setting Up Download Server With Lighttpd

Aug 8, 2008

to getting a second server, specifically for downloads for my site. Without going into too much detail, my website requires that I get a separate server for downloads, and another for the webserver.

I've already gone ahead and configured the server I want; however, I'm trying to do something different from what I'm used to. I'd like to use Lighttpd, instead of apache, as well as not having cPanel installed on the server. I'd still have cPanel and Apache on my regular webserver, but I'd rather keep my download server relatively clean.

So, once I get my server, and I install Lighttpd, how do I go about setting up everything so that my two servers can communicate? I'd like the download server to be something like: download.mydomain.com , so would I have to set up an A Hostname on my webserver?

What are the steps I should take?

View 8 Replies View Related

How To Setup Linux Proxy Server Apache+lighttpd

Apr 24, 2007

somebody know is possible on some way route traffic before come to web server (apache or lighttpd)?

I want to setup lighttpd on port 80 and apache on port 81 and I want visitors to go direct to apache or lighttpd without url:81 and that must work on this way if somebody visiting url1.domain.com that go to lighttpd on port 80 and if somebody visiting url2.domain.com that go to apache on port 81 and something must route it before lighttpd and apache (and get/post must work), is this possible on some way?

I know that lighttpd and apache can do it but I don`t need it on that way!

View 8 Replies View Related

Plesk 12.x / Linux :: Deny User Upload File Via File Manager Or Hidden File Tab?

Feb 10, 2015

I'm build Plesk Panel for Linux and Presence Builder, I don't want my user can upload their website to hosting via File Manager. How can I do it...

View 2 Replies View Related

Hosting An Exe File

Aug 5, 2008

I host my own website with windows server 2003, and no-ip, and it is called thinkjoke.servemp3.com. I want people to be able to download an exe file. How do I configure this?

View 7 Replies View Related

Webhost That Allows File Hosting

May 16, 2009

I plan to host a small multimedia site.

I am looking for a new webhost. I want a webhost that:

1. Costs less than $10 a month

2. Allows file hosting. (Video streaming/downloading)

3. Ideally allows for storage of files that are not related to the website.

4. Ideally allows for anonymous FTP access.

Only 1 and 2 are critical. The site will have many MP3s, Videos, PDF and text documents available for streaming or downloading. All the material will either be my own or the copywrited material of my organization. I have their express written permission to host and distribute these media files under a creative commons license. It will be 5GB or less of files, and they will be downloaded rarely and not very many people simultaneously downloading at once.

Most webhosts I have looked at (Monsterhost, 1and1, Bluehost, mmhosting.com, etc) All offer unlimited/tons of space and have some provision in their terms of service agreement like this: "Webhost company does not allow file sharing / unlimited media sharing." or "HostMonster.Com offers its Services to host web sites, not to store data. Using an account as an online storage space for archiving electronic files is prohibited and will result in termination of hosting services without prior notice."

So where can I find a host that allows file hosting, video hosting, etc? I don't need a lot of bandwidth/storage space, but I do want to host my media.

View 14 Replies View Related

Static File Hosting

Apr 4, 2009

I currently have an existing web hosting package with a web host. However, I need to supplement that with a file hosting service for my users.

I'm estimating that I will need about 2Gb disk space, and approximately 30~40Gb of traffic monthly. This will just be plain static file hosting. I don't need any scripts, databases, etc.

View 11 Replies View Related

*.mp3 Link File Hosting

Oct 27, 2009

any reliable audio hosting service that can offer an *.mp3 - ending link to a file, not the "server.com/folder/4j8uz22ewssw" thing, please? In other words I'm looking for a hosting service with a direct link to an mp3 (just to clear things up, its not copyrighted since I'm the owner of it).

View 14 Replies View Related

File Sharing Hosting

Oct 16, 2009

Im doing an iphone app related to audio recording. I would like for the user to be able to share these recordings on twitter/facebook. Since you can't encode to mp3 (licensing issue i think), I'll have to do it server side, and then host those mp3s for some period of time (week or month).

I'm wondering if anyone can recommend an inexpensive hosting solution I should look at. Most of the cheaper hosting plans I see would probably consider this as file sharing and not allow it in their TOS.

I thought I would be able to use google appengine, and pay only for whats used... but since it doesn't do direct disk access I don't think there's a way for me to convert to mp3 with them.

View 5 Replies View Related

Legalities For File Hosting

Jun 17, 2009

I'm creating a script that includes a feature for people to upload files and music which they can distribute to their users...

What are legalities for hosting files that have been uploaded by other users? For example, if they upload files that are copyrighted, how do I protect myself from getting in trouble for hosting the files?

Would it be better if the files are hosted on the account holders website and my script just links to them?

View 9 Replies View Related

File Hosting Service

Sep 23, 2009

I'm making a website which sells digital goods. Are there file hosting services that allow customers to download directly from them when they buy something? Instead of hosting files on my own web host?

View 12 Replies View Related

Right Host For File Hosting?

Jul 21, 2008

I have a dedicated server for most of my sites and scripts

I'm starting a site (kind of like rapidshare, not really the same but for the purpose of this example, it might as well be rapidshare/megaupload/etc)

I want to run the main site off my dedicated server, but for the hosting of files, I want hosting that will offer good speeds/bandwidth/space

I'm not sure if I should get multiple 10mbit/sec lines, or one 100mbit/sec line, or what I should really do

View 4 Replies View Related

Cheap File Hosting?

Jun 29, 2008

if there were services dedicated to hosting large files.

Basically, instead of those free upload sites (ie MediaFire), it gives a direct link to the file, the file doesn't expire, and there isn't a 100MB upload limit.

Would prefer to have 50GB+ space, and if bandwidth is metered, probably 100GB/month or over.

Obviously, there's no need for any scripting/dynamic content.

Would such a thing be available for around US$5/month?

(Considering that sites like Megaupload can give you 250GB of space with no bandwidth metering for around US$50/year, I don't think it's too unreasonable to ask for something less but with direct links)

View 16 Replies View Related

File Hosting Website

Jul 2, 2007

A friend of mine and I are developing a new File Hosting website. Growth of data is huge and we'd need a way to welcome million daily users.

What do we need? We have already 4 servers on hand ready to go. We are coding a kind of multi-server script to make our life easier.

What about the specs we'd need for our main server? Do we need a load-balancing system?

And for hardware replacement, is there anyway to get life easier if any hdd (hard drive disk) are broken?

View 1 Replies View Related

Any Hosting Without File Number Restrictions

Apr 21, 2009

Is there any hosting providers without file number limits? Or higher limits...

I've been using dreamhost, but found that they have a 500k file number limits. So now i'm using less than 2 gigs of disk and still have 370+ worthless free gigs of disk space

View 14 Replies View Related

Secure File Hosting Service

Feb 9, 2009

I don't know where to ask this question so hopefully I'm in the right forum. I have a friend that owns his own company and travels alot. He needs a place where he can store his work files (mostly document like word, excel, pdf, drawings, etc...) which contains very sensitive information. He need a place where he or the people in his team can transfer files and that he can setup access levels for his users. He need access to his files with a secure tool such as sftp or something else that you guys can recommend.

Also, since some files can be very large he requires a good transfer speed from everywhere in the world. He's looking at around 100GB of storage space and a very high transfer allowance. He will probably need to host his website also. Do you guys think it's better to host the files and website separately?

View 3 Replies View Related

Fast, Reliable File Hosting

Nov 4, 2009

I have a VPS account now and I host a setup.exe file on my site, but about 10% of all downloads are incomplete and result in a corrupt setup file. I am guessing that maybe it's because too many people are trying to download the file at the same time? Whatever the reason, I need more reliable file hosting. Can anyone suggest a place to host just my files, which will provide speedy, reliable downloads? I'll still keep the VPS for my site, but need to put the files elsewhere. I don't want any free, ad supported sites, or ones that require the user to visit another site first.

View 7 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved