make lighttpd happy so it can start
This commit is contained in:
parent
fc8f7af8ae
commit
7455fd6a63
2 changed files with 8 additions and 2 deletions
|
@ -75,7 +75,7 @@ var.socket_dir = home_dir + "/sockets"
|
|||
#######################################################################
|
||||
##
|
||||
## Load the modules.
|
||||
include "modules.conf"
|
||||
#include "modules.conf"
|
||||
server.modules = (
|
||||
"mod_access",
|
||||
"mod_setenv",
|
||||
|
@ -210,7 +210,7 @@ server.network-backend = "linux-sendfile"
|
|||
##
|
||||
## With SELinux enabled, this is denied by default and needs to be allowed
|
||||
## by running the following once : setsebool -P httpd_setrlimit on
|
||||
#server.max-fds = 2048
|
||||
server.max-fds = 2048
|
||||
|
||||
##
|
||||
## Stat() call caching.
|
||||
|
|
|
@ -80,6 +80,12 @@
|
|||
when: not devel
|
||||
include: "install_certs.yml"
|
||||
|
||||
- name: allow lighttpd set fds limit
|
||||
seboolean: name=httpd_setrlimit state=yes persistent=yes
|
||||
|
||||
- name: create directory for compress module of lighttpd
|
||||
file: path=/var/cache/lighttpd/compress owner=lighttpd group=lighttpd mode=0644 state=directory
|
||||
|
||||
# mime default to text/plain and enable dirlisting for indexes
|
||||
- name: update lighttpd configs
|
||||
copy: src="lighttpd/{{ item }}" dest="/etc/lighttpd/conf.d/{{ item }}" owner=root group=root mode=0644
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue