diff --git a/README.md b/README.md index 612db56..afd8822 100644 --- a/README.md +++ b/README.md @@ -55,18 +55,6 @@ If `cc` is not on your `PATH` as an alias to your C compiler, you may need to sp CC=gcc make ``` -## How to test darkhttpd - -``` -make test -``` - -If that isn't working for you, and you're on FreeBSD, you may need to run something closer to the following: - -``` -ASAN_OPTIONS=" " PYTHON=python3.11 make test -``` - ## How to run darkhttpd Serve /var/www/htdocs on the default port (80 if running as root, else 8080): @@ -186,3 +174,15 @@ docker run -p 8080:80 -v ~/dev/mywebsite:/var/www/htdocs:ro darkhttpd ``` Enjoy. + +## How to test darkhttpd + +``` +make test +``` + +If that isn't working for you, and you're on FreeBSD, you may need to run something closer to the following: + +``` +ASAN_OPTIONS=" " PYTHON=python3.11 make test +```