aboutsummaryrefslogtreecommitdiffstats
path: root/doc/install/sample-lighttpd.conf
diff options
context:
space:
mode:
authorThomas Willingham <founder@kakste.com>2013-06-14 15:41:19 +0100
committerThomas Willingham <founder@kakste.com>2013-06-14 15:41:19 +0100
commit2a9611467ba556c7ccc9231cb5e320c52e0bb77e (patch)
tree667be5127ab93fd8d3eeb49cacaf80883a761b97 /doc/install/sample-lighttpd.conf
parent9b67e114ad9da2b5e0456709affd20d9c760e4ae (diff)
downloadvolse-hubzilla-2a9611467ba556c7ccc9231cb5e320c52e0bb77e.tar.gz
volse-hubzilla-2a9611467ba556c7ccc9231cb5e320c52e0bb77e.tar.bz2
volse-hubzilla-2a9611467ba556c7ccc9231cb5e320c52e0bb77e.zip
Lighttpd sample config
Diffstat (limited to 'doc/install/sample-lighttpd.conf')
-rw-r--r--doc/install/sample-lighttpd.conf82
1 files changed, 82 insertions, 0 deletions
diff --git a/doc/install/sample-lighttpd.conf b/doc/install/sample-lighttpd.conf
new file mode 100644
index 000000000..99971d9d1
--- /dev/null
+++ b/doc/install/sample-lighttpd.conf
@@ -0,0 +1,82 @@
+# See http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions
+
+### LOAD MODULES
+server.modules = ( "mod_access",
+"mod_accesslog",
+"mod_fastcgi",
+"mod_redirect",
+"mod_rewrite"
+)
+
+### BASIC STUFF
+server.port = 80
+
+server.username = "http"
+
+server.groupname = "http"
+
+server.document-root = "/path/to/your/www/files" #adjust to your setup
+
+server.errorlog = "/var/log/lighttpd/error.log"
+
+accesslog.filename = "/var/log/lighttpd/access.log"
+
+### DISABLE DIR LISTING
+dir-listing.activate = "disable"
+
+### DISABLE REJECT EXPECT HEADER
+### (needed for curl POST requests - otherwise they fail with error 417)
+server.reject-expect-100-with-417 = "disable"
+
+### DEFINE SUPPORTED INDEX FILENAMES
+index-file.names = ( "index.html",
+"index.htm",
+"index.php"
+)
+
+### DEFINE SUPPORTED MIME TYPES
+mimetype.assign = ( ".html" => "text/html",
+".htm" => "text/html",
+".css" => "text/css",
+".txt" => "text/plain",
+".svg" => "image/svg+xml",
+".jpg" => "image/jpeg",
+".png" => "image/png"
+)
+
+### DONT EVER SERVE FILES WITH EXTENSION
+static-file.exclude-extensions = ( ".php" )
+
+### PHP WITH PHP-FPM
+### (needs php-fpm installed and running)
+fastcgi.server = (
+".php" => (
+"localhost" => (
+"socket" => "/run/php-fpm/php-fpm.sock",
+"broken-scriptfilename" => "enable",
+"allow-x-sendfile" => "enable"
+)
+)
+)
+
+### ENABLE SSL
+$SERVER["socket"] == ":443" {
+ssl.engine = "enable"
+ssl.ca-file = "/etc/lighttpd/certs/ca-certs.crt"
+ssl.pemfile = "/etc/lighttpd/certs/red-ssl.crt"
+}
+
+### RISTRICT ACCESS TO DIRECTORYS AND FILES
+$HTTP["url"] =~ "\.(out|log|htaccess)$" {
+url.access-deny = ("")
+}
+
+$HTTP["url"] =~ "(^|/)\.git" {
+url.access-deny = ("")
+}
+
+### URL REWRITE RULES
+url.rewrite-if-not-file = (
+"^\/([^\?]*)\?(.*)$" => "/index.php?q=$1&$2",
+"^\/(.*)$" => "/index.php?q=$1"
+)