M7350v7_en_gpl
This commit is contained in:
@ -12,6 +12,7 @@
|
||||
# - saves some time
|
||||
# - saves memory
|
||||
server.modules = (
|
||||
"mod_expire",
|
||||
# "mod_rewrite",
|
||||
"mod_redirect",
|
||||
# "mod_alias",
|
||||
@ -20,7 +21,7 @@ server.modules = (
|
||||
# "mod_trigger_b4_dl",
|
||||
# "mod_auth",
|
||||
# "mod_status",
|
||||
# "mod_setenv",
|
||||
"mod_setenv",
|
||||
# "mod_fastcgi",
|
||||
# "mod_proxy",
|
||||
# "mod_simple_vhost",
|
||||
@ -30,7 +31,6 @@ server.modules = (
|
||||
# "mod_compress",
|
||||
# "mod_ssi",
|
||||
# "mod_usertrack",
|
||||
# "mod_expire",
|
||||
# "mod_secdownload",
|
||||
# "mod_rrdtool",
|
||||
# "mod_webdav",
|
||||
@ -119,6 +119,9 @@ mimetype.assign = (
|
||||
#accesslog.filename = "/www/access.log"
|
||||
#debug.log-request-handling = "enable"
|
||||
|
||||
###[pudongfang] add ipv6 support
|
||||
$SERVER["socket"] == "[::]:80" {}
|
||||
|
||||
$HTTP["url"] =~ "/" {
|
||||
server.document-root = "/WEBSERVER/www/"
|
||||
#server.errorlog = "/www/lighttpd.error.log"
|
||||
@ -154,6 +157,16 @@ $HTTP["url"] == "/" {
|
||||
}
|
||||
}
|
||||
}
|
||||
$HTTP["url"] =~ "/*.html" {
|
||||
setenv.add-response-header = ( "Cache-Control" => "no-cache" )
|
||||
}
|
||||
$HTTP["url"] =~ "/*.css" {
|
||||
expire.url = ( "" => "access 1 hours")
|
||||
}
|
||||
$HTTP["url"] =~ "/*.js" {
|
||||
setenv.add-response-header = ( "Cache-Control" => "no-cache" )
|
||||
}
|
||||
expire.url = ( "/images/" => "access 1 hours")
|
||||
|
||||
##
|
||||
# which extensions should not be handle via static-file transfer
|
||||
|
@ -15,6 +15,8 @@ RDEPENDS_${PN} += " \
|
||||
lighttpd-module-auth \
|
||||
lighttpd-module-redirect \
|
||||
lighttpd-module-evasive \
|
||||
lighttpd-module-expire \
|
||||
lighttpd-module-setenv \
|
||||
"
|
||||
EXTRA_OECONF += " \
|
||||
--with-openssl \
|
||||
|
0
oe-core/meta-msm/recipes/linux-quic/linux-quic_git.bb
Normal file → Executable file
0
oe-core/meta-msm/recipes/linux-quic/linux-quic_git.bb
Normal file → Executable file
@ -11,6 +11,8 @@ S = "${WORKDIR}/shortcut-fe/shortcut-fe"
|
||||
|
||||
FILES_${PN}="/etc/init.d/start_shortcut_fe_le"
|
||||
|
||||
EXTRA_OEMAKE += "${@base_conditional('TP_FEATURE_CLOUD', 'y', 'EXTRA_CFLAGS+=-DTP_FEATURE_CLOUD', '', d)}"
|
||||
|
||||
do_install() {
|
||||
module_do_install
|
||||
install -d ${D}${sysconfdir}/init.d
|
||||
|
@ -1,16 +0,0 @@
|
||||
inherit autotools qcommon
|
||||
|
||||
DESCRIPTION = "WFA certification testing tool for QCA devices"
|
||||
HOMEPAGE = "https://github.com/qca/sigma-dut"
|
||||
LICENSE = "BSD-3-Clause"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/${LICENSE};md5=550794465ba0ec5312d6919e203a55f9"
|
||||
|
||||
PR = "r0"
|
||||
|
||||
SRC_DIR = "${WORKSPACE}/wlan/utils/sigma-dut/"
|
||||
|
||||
S = "${WORKDIR}/wlan/utils/sigma-dut"
|
||||
|
||||
do_install() {
|
||||
make install DESTDIR=${D} BINDIR=${sbindir}/
|
||||
}
|
Reference in New Issue
Block a user