Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking into developing a small (read:rudimentary) web server on a linux platform and I have no idea where to start.

What I want it to be able to do is:

  • Listen on a specific port
  • Take HTTP post and get requests
  • Respond appropriately
  • No session management required
  • Has to be in C or C++
  • Has to run as a service on boot

I am familiar with HTTP headers and am an experienced php and .net web developer, but I am not sure where to start with this task.

Can you advise me with some resources to bridge the learning curve?

Thanks.

share|improve this question
Running at boot doesn't have anything to do with your programming language, all you do have to do is make it runnable as [programname] start and stoppable as [programname] stop, then install it to /etc/init.d or /etc/rc.d/ or whatever. – Brendan Long Feb 26 '10 at 0:55
Thanks Brendan, can you explain (or prov link) as to what you mean by 'runnable' in this context? – Jack Feb 26 '10 at 0:57
Brendan is trying to explain a Unix daemon, which is similar to what is called a Service under MS-Windows. Ref (with code fragments): netzmafia.de/skripten/unix/linux-daemon-howto.html – mctylr Feb 26 '10 at 1:51
1  
If this is going to be a internet-facing server, you shouldn't write your own. It will be attacked. Existing HTTP servers contain lots of lessons learned. – MSalters Feb 26 '10 at 9:02

6 Answers

up vote 20 down vote accepted

From top-down, you'll need to know about:

  • HTTP Protocol
  • TCP server - BSD socket programming
  • writing a basic Unix daemon (persistent service)
  • process management (fork)
  • parsing text (read a configuration text file)
  • file handling (I/O)
  • debugging C / C++ programming :)

So you will have to learn about writing a basic Unix application, BSD socket programming for the TCP/IP network programming, and the HTTP protocol.

Commonly used texts include:

Unix application development:

  • Advanced Programming in the Unix Environment, Stevens & Rago
  • Advanced Unix Programming

TCP/IP (sockets) programming:

  • Unix Network Programming, Volume 1 Stevens et all
  • TCP/IP Illustrated, Stevens
  • Ineternetworking with TCP/IP, Volume 3, Comer

HTTP Protocol

  • RFCs including
  • RFC 2616 for HTTP v1.1,
  • RFC 2068 for pre-v1.1
  • plus others depending on support (compression, URI / URL) and completeness
share|improve this answer

For a SIMPLE/BASIC/ULTRA-LIGHT HTTP Server, the program flow should be something like that (in pseudo-code):

----Main thread----
Load settings
while true do
    Wait for connection
    Connection received, create a new thread and transfer this connection to this thread.
end

----Connection thread----
Analyze request
if dynamic content do
    Dump the HTTP request and send it to the interpreter
    Wait for response from the interpreter
    Read response header from the interpreter
    Stream response
else if static content do
    Load requested file
    Stream file content
end
(Optional) Cache the response if size < X
Send the response
Close the socket

So you should learn Threading, Interprocess-communication (if you want to interact with an interpreter), Socket programming and the HTTP Protocol.

share|improve this answer

All details cant be explained here
Visit http://www.linuxhowtos.org/C_C++/socket.htm for creating a basic server using C.
Another one by IBM : http://www.ibm.com/developerworks/systems/library/es-nweb/index.html

share|improve this answer

http://en.wikipedia.org/wiki/Comparison_of_lightweight_web_servers

thank you AGAIN wikipedia

BTW - you might want to Google "embedded web server open source"

(www).ibm.com/developerworks/web/library/wa-ltwebserv/

share|improve this answer

You could always start with an existing code base. boa may be a start as it is small, implemented in C and suitable for your 'start on boot' requirement; details are e.g. in the Debian / Ubuntu package.

share|improve this answer

With libevent library, you can write a web server in 40 lines of c code.

http://3.rdrail.net/blog/libevent-webserver-in-40-lines-of-c/

If you want create it from ground up, then you can reference open source webserver written in c like lighttpd, apache, nginx.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.