From 8f22a6baee0b958a510633bead3f669bd195e2e3 Mon Sep 17 00:00:00 2001 From: Kristjan Komlosi Date: Tue, 2 Jun 2020 09:52:40 +0200 Subject: [PATCH] removed lighttpd configuration as the defaults work fine --- etcs/install.sh | 2 +- etcs/lighttpd/lighttpd.conf | 27 --------------------------- 2 files changed, 1 insertion(+), 28 deletions(-) delete mode 100644 etcs/lighttpd/lighttpd.conf diff --git a/etcs/install.sh b/etcs/install.sh index d381941..8b00c6d 100755 --- a/etcs/install.sh +++ b/etcs/install.sh @@ -14,7 +14,7 @@ cp rc.local /etc chmod +rx /etc/rc.local cp interfaces-terahz /etc/network/interfaces.d/ -cp -R ../frontend/* /var/www/ +cp -R ../frontend/* /var/www/html/ mkdir -p /usr/local/lib/terahz cp -R ../backend/* /usr/local/lib/terahz diff --git a/etcs/lighttpd/lighttpd.conf b/etcs/lighttpd/lighttpd.conf deleted file mode 100644 index 6064736..0000000 --- a/etcs/lighttpd/lighttpd.conf +++ /dev/null @@ -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"