Commit 7a14dbb9 authored by Cédric Le Ninivin's avatar Cédric Le Ninivin

Fix cache pid file in apache configuration dict

parent 149b24be
......@@ -294,7 +294,7 @@ class Recipe(BaseSlapRecipe):
apache_conf = dict()
apache_conf['server_name'] = name
apache_conf['pid_file'] = self.options['pid-file']
apache_conf['cache_pid_file'] = self.options['cache-pid-file']
apache_conf['pid_cache_file'] = self.options['cache-pid-file']
apache_conf['lock_file'] = os.path.join(self.run_directory,
name + '.lock')
apache_conf['document_root'] = os.path.join(self.data_root_directory,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment