removed lighttpd configuration as the defaults work fine

This commit is contained in:
Kristjan Komlosi
2020-06-02 09:52:40 +02:00
parent fa2c1cccb1
commit 8f22a6baee
2 changed files with 1 additions and 28 deletions

View File

@@ -14,7 +14,7 @@ cp rc.local /etc
chmod +rx /etc/rc.local chmod +rx /etc/rc.local
cp interfaces-terahz /etc/network/interfaces.d/ cp interfaces-terahz /etc/network/interfaces.d/
cp -R ../frontend/* /var/www/ cp -R ../frontend/* /var/www/html/
mkdir -p /usr/local/lib/terahz mkdir -p /usr/local/lib/terahz
cp -R ../backend/* /usr/local/lib/terahz cp -R ../backend/* /usr/local/lib/terahz

View File

@@ -1,27 +0,0 @@
server.modules = (
"mod_access",
"mod_alias",
"mod_compress",
"mod_redirect"
)
server.document-root = "/var/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
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"