summaryrefslogtreecommitdiffstats
path: root/satellit_installer/static_files/lighttpd.conf
blob: e8579f24bd8554e4e11a4f6ff64b08ab30d793cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
server.modules = (
	"mod_access",
#	"mod_alias",
	"mod_compress",
	"mod_redirect",
	"mod_rewrite",
#	"mod_proxy",
)

server.document-root        = "/srv/openslx/www"
server.upload-dirs          = ( "/var/cache/lighttpd/uploads" )
server.errorlog             = "/var/log/lighttpd/error.log"
server.pid-file             = "/var/run/lighttpd.pid"
server.username             = "www-data"
server.groupname            = "www-data"
server.port                 = 80
server.reject-expect-100-with-417 = "disable"


index-file.names            = ( "index.php", "index.html", "index.lighttpd.html" )
url.access-deny             = ( "~", ".inc" )
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )

compress.cache-dir          = "/var/cache/lighttpd/compress/"
compress.filetype           = ( "application/javascript", "text/css", "text/html", "text/plain" )

# default listening port for IPv6 falls back to the IPv4 port
include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port
include_shell "/usr/share/lighttpd/create-mime.assign.pl"
include_shell "/usr/share/lighttpd/include-conf-enabled.pl"
# Check if server.pem exists, if so output configuration block for HTTPS
include_shell "/usr/share/lighttpd/auto-ssl.sh"

url.rewrite-once = (
	"^/*boot/+([^/]+)/+config$" => "/slx-admin/api.php?do=getconfig&type=$1",
	"^/*boot/+([^/]+)/+config\?(.*)$" => "/slx-admin/api.php?$2&do=getconfig&type=$1",
	"^/*boot/+([^/]+)/+config\.tgz$" => "/slx-admin/api.php?do=sysconfig&type=$1",
	"^/*boot/+([^/]+)/+config\.tgz\?(.*)$" => "/slx-admin/api.php?$2&do=sysconfig&type=$1",
	"^/*boot/+ipxe$" => "/slx-admin/api.php?do=serversetup",
	"^/*boot/+ipxe\?(.*)$" => "/slx-admin/api.php?$1&do=serversetup",
	"^/*vmchooser/+list[^\?]*$" => "/slx-admin/api.php?do=dozmod&resource=list",
	"^/*vmchooser/+list[^\?]*\?(.*)$" => "/slx-admin/api.php?$1&do=dozmod&resource=list",
	"^/*vmchooser/+lecture/+([^/]+)(\?|$)" => "/slx-admin/api.php?do=dozmod&resource=vmx&lecture=$1",
	"^/*vmchooser/+lecture/+([^/]+)/+([^/]+)(\?|$)" => "/slx-admin/api.php?do=dozmod&resource=$2&lecture=$1",
	"^/*vmchooser/+([^/]+)$" => "/slx-admin/api.php?do=news&type=$1",
	"^/panel/([^\?]{36})$" => "/slx-admin/?do=locationinfo&show=panel&uuid=$1"
)

# Add support for a conf.d directory -- include /etc/lighttpd/conf.d/*
# Use this is you want to modify the satellite server, as future updates might overwrite lighttpd.conf
include_shell "/usr/share/lighttpd/include-conf-d.sh"