Commit be0fb2d3 authored by Benoit Mortier's avatar Benoit Mortier
Browse files

Fixes: #3335 adding lighttpd support in the doc

Showing with 29 additions and 0 deletions
+29 -0
# lighttpd configuration for GOsa
# Set alias to http://<host>/gosa/
alias.url += (
"/gosa/" => "/usr/share/gosa/html/"
)
# Enable FastCGI and set it to handle .php URLs
# php-cgi is run with the GOsa-required options
server.modules += ( "mod_fastcgi" )
$HTTP["url"] =~ "^/gosa/" {
fastcgi.server = ( ".php" =>
((
"bin-path" => "/usr/bin/php-cgi -d expose_php=Off -d magic_quotes_gpc=Off",
"socket" => "/tmp/php.socket",
"max-procs" => 2,
"idle-timeout" => 20,
"bin-environment" => (
"PHP_FCGI_CHILDREN" => "4",
"PHP_FCGI_MAX_REQUESTS" => "10000"
),
"bin-copy-environment" => (
"PATH", "SHELL", "USER"
),
"broken-scriptfilename" => "enable"
))
)
}
  • bmortier @bmortier

    mentioned in issue #1111 (closed)

    By bmortier on 2017-09-02T15:13:19 (imported from GitLab)

    ·

    mentioned in issue #1111 (closed)

    By bmortier on 2017-09-02T15:13:19 (imported from GitLab)

    Toggle commit list
Supports Markdown
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