From apache2 doc:
The LockFile directive sets the path to the lockfile used when Apache is used with an AcceptMutex value of either fcntl or flock.
And about AcceptMutex
The AcceptMutex directives sets the method that Apache uses to serialize multiple children accepting requests on network sockets.
I am running apache 2.2 with mod_wsgi for a django website on an Ubuntu 64bit box.
what is it for? is this even ever used?
I can't find a file in the specified location.
My /usr/sbin/apache2 -V tells me:
-D APR_USE_SYSVSEM_SERIALIZE
-D APR_USE_PTHREAD_SERIALIZE
which should mean that sysvsem is used. Does that mean that LockFile is not used?