mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
- Don't use title casing, instead use simple capitalization. - Add some tags. - Drop outdated tags like 'VoIP', 'IM' while emphasizing 'Audio chat', 'Video chat', 'Encrypted messaging' instead. - Try to clarify server vs. web client with tags. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
63 lines
1.4 KiB
Python
63 lines
1.4 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from plinth.clients import store_url
|
|
|
|
from . import privileged
|
|
|
|
_orbot_package_id = 'org.torproject.android'
|
|
_tor_browser_download_url = \
|
|
'https://www.torproject.org/download/download-easy.html'
|
|
|
|
clients = [{
|
|
'name':
|
|
_('Tor Browser'),
|
|
'platforms': [{
|
|
'type': 'download',
|
|
'os': 'windows',
|
|
'url': _tor_browser_download_url,
|
|
}, {
|
|
'type': 'download',
|
|
'os': 'gnu-linux',
|
|
'url': _tor_browser_download_url,
|
|
}, {
|
|
'type': 'download',
|
|
'os': 'macos',
|
|
'url': _tor_browser_download_url,
|
|
}]
|
|
}, {
|
|
'name':
|
|
_('Orbot: Proxy with Tor'),
|
|
'platforms': [{
|
|
'type': 'store',
|
|
'os': 'android',
|
|
'store_name': 'google-play',
|
|
'url': store_url('google-play', _orbot_package_id)
|
|
}, {
|
|
'type': 'store',
|
|
'os': 'android',
|
|
'store_name': 'f-droid',
|
|
'url': store_url('f-droid', _orbot_package_id)
|
|
}]
|
|
}]
|
|
|
|
backup = {
|
|
'config': {
|
|
'directories': ['/etc/tor/instances/plinth/'],
|
|
'files': [str(privileged.TOR_APACHE_SITE)]
|
|
},
|
|
'secrets': {
|
|
'directories': ['/var/lib/tor-instances/plinth/']
|
|
},
|
|
'services': ['tor@plinth']
|
|
}
|
|
|
|
tags = [
|
|
_('Onion services'),
|
|
_('Relay'),
|
|
_('Anonymity network'),
|
|
_('Censorship resistance'),
|
|
_('Tor'),
|
|
]
|