From 2f759115508e8f0466889776841d6c90e8b8519d Mon Sep 17 00:00:00 2001 From: Ole Christian Eidheim Date: Thu, 25 Sep 2014 15:20:08 +0200 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2b1c078..973564a 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ On Linux using g++: add -pthread #### HTTP -g++ -O3 -std=c++11 -lboost_system http_examples.cpp -o http_examples +g++ -O3 -std=c++11 http_examples.cpp -lboost_system -o http_examples Then to run the server and client examples: ./http_examples @@ -43,7 +43,7 @@ Also, direct your favorite browser to for instance http://localhost:8080/ #### HTTPS -g++ -O3 -std=c++11 -lboost_system -lssl -lcrypto https_examples.cpp -o https_examples +g++ -O3 -std=c++11 https_examples.cpp -lboost_system -lssl -lcrypto -o https_examples Before running the server, an RSA private key (server.key) and an SSL certificate (server.crt) must be created. Follow, for instance, the instructions given here (for a self-signed certificate): http://www.akadia.com/services/ssh_test_certificate.html