Top "Httpserver" questions

An HTTP Server is any application which receives requests via the HTTP protocol and sends back the corresponding response to fulfill the request.

simple HTTP server in Java using only Java SE API

Is there a way to create a very basic HTTP server (supporting only GET/POST) in Java using just the …

java http httpserver
Get and Set a Single Cookie with Node.js HTTP Server

I want to be able to set a single cookie, and read that single cookie with each request made to …

javascript node.js cookies httpserver
Build a simple HTTP server in C

I need to build a simple HTTP server in C. Any guidance? Links? Samples?

c httpserver
What is a faster alternative to Python's http.server (or SimpleHTTPServer)?

Python's http.server (or SimpleHTTPServer for Python 2) is a great way of serve the contents of the current directory from …

command-line httpserver command-line-tool simplehttpserver
How to start http-server locally

I cloned angular seed which is using node http-server and it is working perfectly using following configuration. Command : npm start (…

npm httpserver
Python HTTP Server/Client: Remote end closed connection without response error

I made simple HTTP Server using BaseHTTPRequestHandler. The problem is, that when I want to post some data using requests …

python error-handling python-requests httpserver
nginx: [emerg] unknown directive " " in /etc/nginx/sites-enabled/example.com:3

I have followed this website http://raspberrypihelp.net/tutorials/24-raspberry-pi-webserver to setup the HTTP server nginx on my Raspberry Pi …

linux nginx raspberry-pi httpserver raspbian
npm http-server with SSL

I'm using the npm package "http-server" (https://www.npmjs.com/package/http-server) to set up a simple webserver, but I …

node.js ssl npm httpserver
How can I receive an uploaded file using a Golang net/http server?

I'm playing around with Mux and net/http. Lately, I'm trying to get a simple server with one endpoint to …

go multipartform-data httpserver