add note about FreeBSD

This commit is contained in:
2025-07-24 17:43:59 +02:00
parent 3707880eb8
commit c2ca8c73e1
+17
View File
@@ -13,3 +13,20 @@ busybox httpd -vv -fp 8080
``` ```
And then open `http://localhost:8080` in your browser. And then open `http://localhost:8080` in your browser.
### FreeBSD
The demo syntax used in the interpreter script is not compatible with FreeBSD's `sh`.
The following patch makes it use the default Busybox `ash` applet installed via `pkg install busybox`:
```diff
diff --git a/interpreter.server_core_internal b/interpreter.server_core_internal
index 097f55f..604fe7f 100755
--- a/interpreter.server_core_internal
+++ b/interpreter.server_core_internal
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/usr/local/bin/busybox ash
server_core_internal_file="${1:-index.html}"
```