mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-02 00:40:10 +00:00
14 lines
394 B
Lua
14 lines
394 B
Lua
--
|
|
-- (C) 2013-15 - ntop.org
|
|
--
|
|
|
|
dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
|
|
sendHTTPHeader('text/html; charset=iso-8859-1')
|
|
|
|
ntop.dumpFile(dirs.installdir .. "/httpdocs/inc/header.inc")
|
|
ntop.dumpFile(dirs.installdir .. "/httpdocs/inc/interface_stats.inc")
|
|
dofile(dirs.installdir .. "/scripts/lua/inc/footer.lua")
|