mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-20 10:34:30 +00:00
Signed-off-by: Joseph Nuthalapati <njoseph@riseup.net> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
16 lines
319 B
Python
16 lines
319 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Application manifest for pagekite.
|
|
"""
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
backup = {
|
|
'config': {
|
|
'directories': ['/etc/pagekite.d/']
|
|
},
|
|
'services': ['pagekite']
|
|
}
|
|
|
|
tags = [_('Tunneling'), _('NAT traversal'), _('Remote access')]
|