add favicon in Web User Interface

This commit is contained in:
Sukchan Lee 2017-11-03 10:48:38 +09:00
parent 066339d8cb
commit f35eea1634
4 changed files with 4 additions and 3 deletions

2
debian/control vendored
View File

@ -74,7 +74,7 @@ Description: Open Source based 3GPP EPC PGW (Packet Data Network Gateway)
Packet Core, i.e. the core network of an LTE network.
.
This package provides the PGW or PDN-GW (Packet Data Network Gateway)
element f the EPC, i.e. the gateway between the EPC and the external
element of the EPC, i.e. the gateway between the EPC and the external
packet data network, such as the public Internet. It implements the S5
interface towards the S-GW, the SGi interface towards the Internet,
and the S7 interface towards the PCRF.

View File

@ -5,9 +5,9 @@ SYSTEM=`uname`;
if [ "$SYSTEM" = "Linux" ]; then
if ! grep "pgwtun" /proc/net/dev > /dev/null; then
ip tuntap add name pgwtun mode tun
ip addr add 45.45.0.1/16 dev pgwtun
ip link set pgwtun up
fi
ip addr add 45.45.0.1/16 dev pgwtun
ip link set pgwtun up
else
ifconfig lo0 alias 127.76.0.1 netmask 255.255.255.255
ifconfig lo0 alias 127.76.0.2 netmask 255.255.255.255

View File

@ -20,6 +20,7 @@ export default class MyDocument extends Document {
<meta name="author" content="NextEPC" />
<meta name="description" content={description} />
<link rel='icon' href='/static/favicon.ico'/>
<link rel="stylesheet" type="text/css" href="/static/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="/static/css/nprogress.css" />
<link rel="stylesheet" type="text/css" href="/static/css/index.css" />

BIN
webui/static/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB