mirror of
https://github.com/YunoHost-Apps/borgwarehouse_ynh.git
synced 2024-09-03 18:16:17 +02:00
commit
49f4ad9010
8 changed files with 41 additions and 7 deletions
|
@ -19,7 +19,7 @@ It shall NOT be edited by hand.
|
||||||
BorgWarhouse is a fast and modern WebUI for a BorgBackup's central repository server.
|
BorgWarhouse is a fast and modern WebUI for a BorgBackup's central repository server.
|
||||||
|
|
||||||
|
|
||||||
**Shipped version:** 2.3.0~ynh2
|
**Shipped version:** 2.3.0~ynh3
|
||||||
|
|
||||||
## Screenshots
|
## Screenshots
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ No se debe editar a mano.
|
||||||
BorgWarhouse is a fast and modern WebUI for a BorgBackup's central repository server.
|
BorgWarhouse is a fast and modern WebUI for a BorgBackup's central repository server.
|
||||||
|
|
||||||
|
|
||||||
**Versión actual:** 2.3.0~ynh2
|
**Versión actual:** 2.3.0~ynh3
|
||||||
|
|
||||||
## Capturas
|
## Capturas
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ EZ editatu eskuz.
|
||||||
BorgWarhouse is a fast and modern WebUI for a BorgBackup's central repository server.
|
BorgWarhouse is a fast and modern WebUI for a BorgBackup's central repository server.
|
||||||
|
|
||||||
|
|
||||||
**Paketatutako bertsioa:** 2.3.0~ynh2
|
**Paketatutako bertsioa:** 2.3.0~ynh3
|
||||||
|
|
||||||
## Pantaila-argazkiak
|
## Pantaila-argazkiak
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ Il NE doit PAS être modifié à la main.
|
||||||
|
|
||||||
BorgWarhouse est une interface Web rapide et moderne pour BorgBackup.
|
BorgWarhouse est une interface Web rapide et moderne pour BorgBackup.
|
||||||
|
|
||||||
**Version incluse :** 2.3.0~ynh2
|
**Version incluse :** 2.3.0~ynh3
|
||||||
|
|
||||||
## Captures d’écran
|
## Captures d’écran
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ NON debe editarse manualmente.
|
||||||
BorgWarhouse is a fast and modern WebUI for a BorgBackup's central repository server.
|
BorgWarhouse is a fast and modern WebUI for a BorgBackup's central repository server.
|
||||||
|
|
||||||
|
|
||||||
**Versión proporcionada:** 2.3.0~ynh2
|
**Versión proporcionada:** 2.3.0~ynh3
|
||||||
|
|
||||||
## Capturas de pantalla
|
## Capturas de pantalla
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
BorgWarhouse is a fast and modern WebUI for a BorgBackup's central repository server.
|
BorgWarhouse is a fast and modern WebUI for a BorgBackup's central repository server.
|
||||||
|
|
||||||
|
|
||||||
**分发版本:** 2.3.0~ynh2
|
**分发版本:** 2.3.0~ynh3
|
||||||
|
|
||||||
## 截图
|
## 截图
|
||||||
|
|
||||||
|
|
|
@ -13,5 +13,39 @@ Environment=PORT=__PORT__
|
||||||
ExecStart=__YNH_NPM__ run start
|
ExecStart=__YNH_NPM__ run start
|
||||||
Restart=on-failure
|
Restart=on-failure
|
||||||
|
|
||||||
|
### Depending on specificities of your service/app, you may need to tweak these
|
||||||
|
### .. but this should be a good baseline
|
||||||
|
# Sandboxing options to harden security
|
||||||
|
# Details for these options: https://www.freedesktop.org/software/systemd/man/systemd.exec.html
|
||||||
|
NoNewPrivileges=yes
|
||||||
|
PrivateTmp=yes
|
||||||
|
PrivateDevices=yes
|
||||||
|
RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6 AF_NETLINK
|
||||||
|
RestrictNamespaces=yes
|
||||||
|
RestrictRealtime=yes
|
||||||
|
DevicePolicy=closed
|
||||||
|
ProtectClock=yes
|
||||||
|
ProtectHostname=yes
|
||||||
|
ProtectProc=invisible
|
||||||
|
ProtectSystem=full
|
||||||
|
ProtectControlGroups=yes
|
||||||
|
ProtectKernelModules=yes
|
||||||
|
ProtectKernelTunables=yes
|
||||||
|
LockPersonality=yes
|
||||||
|
SystemCallArchitectures=native
|
||||||
|
SystemCallFilter=~@clock @debug @module @mount @obsolete @reboot @setuid @swap @cpu-emulation @privileged
|
||||||
|
|
||||||
|
# Denying access to capabilities that should not be relevant for webapps
|
||||||
|
# Doc: https://man7.org/linux/man-pages/man7/capabilities.7.html
|
||||||
|
CapabilityBoundingSet=~CAP_RAWIO CAP_MKNOD
|
||||||
|
CapabilityBoundingSet=~CAP_AUDIT_CONTROL CAP_AUDIT_READ CAP_AUDIT_WRITE
|
||||||
|
CapabilityBoundingSet=~CAP_SYS_BOOT CAP_SYS_TIME CAP_SYS_MODULE CAP_SYS_PACCT
|
||||||
|
CapabilityBoundingSet=~CAP_LEASE CAP_LINUX_IMMUTABLE CAP_IPC_LOCK
|
||||||
|
CapabilityBoundingSet=~CAP_BLOCK_SUSPEND CAP_WAKE_ALARM
|
||||||
|
CapabilityBoundingSet=~CAP_SYS_TTY_CONFIG
|
||||||
|
CapabilityBoundingSet=~CAP_MAC_ADMIN CAP_MAC_OVERRIDE
|
||||||
|
CapabilityBoundingSet=~CAP_NET_ADMIN CAP_NET_BROADCAST CAP_NET_RAW
|
||||||
|
CapabilityBoundingSet=~CAP_SYS_ADMIN CAP_SYS_PTRACE CAP_SYSLOG
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
|
|
|
@ -7,7 +7,7 @@ name = "BorgWarehouse"
|
||||||
description.en = "WebUI for a BorgBackup's central repository server"
|
description.en = "WebUI for a BorgBackup's central repository server"
|
||||||
description.fr = "WebUI pour BorgBackup"
|
description.fr = "WebUI pour BorgBackup"
|
||||||
|
|
||||||
version = "2.3.0~ynh2"
|
version = "2.3.0~ynh3"
|
||||||
|
|
||||||
maintainers = []
|
maintainers = []
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue