nonhttpd

A httpd serving nothing.
git clone git://r-36.net/nonhttpd
Log | Files | Refs | README | LICENSE

README.md (325B)


      1 # Examples for nonhttpd
      2 
      3 ## No encryption on port 8080 
      4 
      5 	./socat-nonhttpd.sh
      6 
      7 ## Encryption and certificate authentication on port 4433
      8 
      9 	./gencerts.sh
     10 	./socat-nonhttpd-cert.sh &
     11 	./socat-nonhttpd-client.sh
     12 
     13 ## Encryption but without verification
     14 
     15 	./gencerts.sh
     16 	./socat-nonhttpd-ssl.sh &
     17 	./socat-nonhttpd-ssl-client.sh
     18