webserver

Deploy PHP using Git

How can I deploy a PHP website using Git? I have a hunch it has something to do with using git hooks to perform a git reset --hard on the server side, but how would I go about accomplishing this? ...

A Small Web Server

Can someone suggest a small webserver implementation that will illustrate the concepts of what a webserver does? It should be in a language that is easily read, and understood, and should implement security and cgi, maybe javascript? ...

An amnesia patient's "first" functional language? (I really like Clojure...)

I was recently diagnosed with a cascading dissociative disorder that causes retrograde amnesia in addition to an existing case of possible anterograde amnesia. Many people have tried to remind me of how great a programmer I was before -- Right now I get the concepts and the idioms, but I want to teach myself whether I know or not. I thin...

What is the most common way to front end tomcat with iis6

I want to run a few tomcat web apps behind IIS 6. I was wondering what the most common way that this is accomplished. I have done this with Apache using the AJP connector and using HTTP proxypass. Is this done the same way with IIS 6? Thank you. ...

how can you configure tortoisehg to see in the web servers page the "graph" link?

In the mercurial repo i can see it. I think that mercurial already have this feature with the revision graph. How i've to configure tortoisehg to achieve that? I want to have something like this for the hgweb. ...

Tomcat VS Jetty

I'm wondering about the downsides of each servers in respect to a production environement. Did anyone have big problems with one of the features? Performance, etc. I also quicky took a look at the new Glassfish, does it match up the simple servlet containers (it seems to have a good management interface at least)? ...

How does one set up multiple accounts with separate databases for Django on one server?

Hi there, What options are there for installing Django such that multiple users (each with an "Account") can each have their own database? The semantics are fairly intuitive. There may be more than one User for an Account. An Account has a unique database (and a database corresponds to an account). Picture WordpressMU. :) I've conside...

Multiple installs of Django - How to configure transparent multiplex through the webserver (Lighttpd)?

Hi Everyone, This question flows from the answer to:How does one set up multiple accounts with separate databases for Django on one server? I haven't seen anything like this on Google or elsewhere (perhaps I have the wrong vocabulary), so I think input could be a valuable addition to the internet discourse. How could one configure a s...

Does Apache log cancelled downloads?

If a user requests a large file from an Apache web server, but cancels the download before it completes, is this logged by Apache? Can I tell from the log file which responses were not sent fully, and how many bytes were sent? ...

Sending data from a page on one server, to another remote server. Language not dependant.

I'll try to keep this short and simple. I haven't begun writing the code for this project yet, but I'm trying to work out the pre-coding logistics as of right now. What I am looking to do, is create a method of sending data from one/any site, to another remote server, which would generate a response for the user requesting the data be s...

Best way to redirect image requests to a different webserver?

I am trying to reduce the load on my webservers by adding an "Image server" (a dedicated server for handling image requests), and redirecting all requests for .gif,.jpg,.png etc., to it. My question is, what is the best way to handle the redirection? At the firewall level? (can I do this using iptables?) At the load balancer level? ...

LiteSpeed vs Apache httpd

I've been hearing things lately about the LiteSpeed webserver as being a drop-in replacement for Apache webserver. Even my web host is going to replace their shared webhost environment with LiteSpeed (I'm currently not sure if I must be happy about that or not). Does anyone have any experience with the LiteSpeed webserver (both in devel...

Default.aspx being served when debugging locally

Any ideas why the built in asp.net webserver insists on serving "/default.aspx" whenever you browse to the root "/"? Even if you force the global.asax to redirect to "/" whenever "/default.aspx" is detected it will see "/" as a request to "/default.aspx" and an infinite loop ensues! Anyone have a way around this behaviour? ...

How to upload PHP and MySql into webserver

I am Developing site in vertigoserver, now I need to test the webpage in webserver. I am using the webserver Host-Europe VirtualServer 3.0 Now what are the steps to need to upload the PHP pages, What are the softwares need to upload MySQL queries Any tutorials or suggestions? ...

Link to download Cassini source code?

Does any one know from where can I download source code for Cassini. I tried the link http://www.asp.net/Projects/Cassini/Download but this page does not exist now. ...

How do web servers work?

I am a .NET developer and I've been working in C# for almost 3.5 yrs. I want to understand how the web server works and I don't mean a 65,000 feet overview. I want to understand the inner workings of a web server. What are some good resources to learn the nuts and bolts of how a web server works? ...

Create simple embedded http and https applications in C#

There is a simple http server API that allow you do some simple stuff quickly, without any addition dependency/installation required. Are there any similar API/library in .NET WITHOUT IIS? For example, I am a small window service running, I'd like to add a simple stupid web interface to allow local/remote control/monitoring. ...

ASP.Net Compilation Conflict... My usercontrol exists in two locations

I get the following error message trying to run my page Compiler Error Message: CS0433: The type 'usercontrols_BirthDetails' exists in both 'c:\windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\5c377e82\1f883022\App_Web_ub0hcxgl.dll' and 'c:\windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\5c...

Portable USB Webserver

I have project that I'm working on that is going to require a webserver. The webserver will be used to remotely control a presentation using a mobile device. I see there are quite a few options out there and I'm wondering if someone could provide some recommendations. My criteria include: Portable, fits on a USB key Easy to run. A...

How do you deploy a website to your webservers?

At my company we have a group of 8 web developers for our business web site (entirely written in PHP, but that shouldn't matter). Everyone in the group is working on different projects at the same time and whenever they're done with their task, they immediately deploy it (cause business is moving fast these days). Currently the develop...