I recently took on the task of configuring a server with FREEBSD.

I ran into some errors so I will post some of the resolutions I found:

FreeBSD Apache HTTP Accept Filter Error

The resolution to the above problem is to a accf_http module, which function is to buffer incoming connections until a certain complete HTTP requests arrive, into FreeBSD kernel by using kernel linker:

kldload accf_httpThis immediately activates this module

To always load enable HTTP Accept Filter FreeBSD kernel module (accf_http) during the boot, add the following line into /boot/defaults/loader.conf:

accf_http_load=”YES”

Post to Twitter