mirror of
https://github.com/YunoHost-Apps/nodered_ynh.git
synced 2024-09-03 19:46:25 +02:00
Merge pull request #75 from YunoHost-Apps/testing
This commit is contained in:
commit
3dae97a7ca
4 changed files with 12 additions and 7 deletions
|
@ -46,7 +46,8 @@ logging: { // replace the default logging option ...defaultSettings.logging, //
|
||||||
You can check the default settings Yunohost generates at `/opt/yunohost/nodered/data/settings.js` and find the documentation for configuring Node-RED here: https://nodered.org/docs/user-guide/runtime/configuration
|
You can check the default settings Yunohost generates at `/opt/yunohost/nodered/data/settings.js` and find the documentation for configuring Node-RED here: https://nodered.org/docs/user-guide/runtime/configuration
|
||||||
|
|
||||||
|
|
||||||
**Shipped version:** 3.0.2~ynh1
|
**Shipped version:** 3.0.2~ynh2
|
||||||
|
|
||||||
|
|
||||||
## Screenshots
|
## Screenshots
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,8 @@ module.exports = (defaultSettings) => ({
|
||||||
Vous pouvez consulter les paramètres par défaut générez par Yunohost dans `/opt/yunohost/nodered/data/settings.js` et trouver la documentation pour configurer Node-RED ici: https://nodered.org/docs/user-guide/runtime/configuration
|
Vous pouvez consulter les paramètres par défaut générez par Yunohost dans `/opt/yunohost/nodered/data/settings.js` et trouver la documentation pour configurer Node-RED ici: https://nodered.org/docs/user-guide/runtime/configuration
|
||||||
|
|
||||||
|
|
||||||
**Version incluse :** 3.0.2~ynh1
|
**Version incluse :** 3.0.2~ynh2
|
||||||
|
|
||||||
|
|
||||||
## Captures d'écran
|
## Captures d'écran
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,8 @@ StandardError=inherit
|
||||||
# Details for these options: https://www.freedesktop.org/software/systemd/man/systemd.exec.html
|
# Details for these options: https://www.freedesktop.org/software/systemd/man/systemd.exec.html
|
||||||
NoNewPrivileges=yes
|
NoNewPrivileges=yes
|
||||||
PrivateTmp=yes
|
PrivateTmp=yes
|
||||||
PrivateDevices=yes
|
# Remove to allow the app to talk to USB devices
|
||||||
|
#PrivateDevices=yes
|
||||||
RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6 AF_NETLINK
|
RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6 AF_NETLINK
|
||||||
RestrictNamespaces=yes
|
RestrictNamespaces=yes
|
||||||
RestrictRealtime=yes
|
RestrictRealtime=yes
|
||||||
|
@ -28,7 +29,8 @@ ProtectControlGroups=yes
|
||||||
ProtectKernelModules=yes
|
ProtectKernelModules=yes
|
||||||
ProtectKernelTunables=yes
|
ProtectKernelTunables=yes
|
||||||
LockPersonality=yes
|
LockPersonality=yes
|
||||||
SystemCallFilter=~@clock @debug @module @mount @obsolete @reboot @setuid @swap
|
# @setuid removed from the list because it is needed by some network utilities (ping)
|
||||||
|
SystemCallFilter=~@clock @debug @module @mount @obsolete @reboot @swap
|
||||||
|
|
||||||
# Denying access to capabilities that should not be relevant for webapps
|
# Denying access to capabilities that should not be relevant for webapps
|
||||||
# Doc: https://man7.org/linux/man-pages/man7/capabilities.7.html
|
# Doc: https://man7.org/linux/man-pages/man7/capabilities.7.html
|
||||||
|
|
|
@ -6,13 +6,14 @@
|
||||||
"en": "Flow-based programming for the Internet of Things",
|
"en": "Flow-based programming for the Internet of Things",
|
||||||
"fr": "Programmation par flux de données pour l'Internet des objets"
|
"fr": "Programmation par flux de données pour l'Internet des objets"
|
||||||
},
|
},
|
||||||
"version": "3.0.2~ynh1",
|
"version": "3.0.2~ynh2",
|
||||||
"url": "https://nodered.org",
|
"url": "https://nodered.org",
|
||||||
"upstream": {
|
"upstream": {
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"website": "https://nodered.org",
|
"website": "https://nodered.org",
|
||||||
"userdoc": "https://nodered.org/docs/",
|
"userdoc": "https://nodered.org/docs/",
|
||||||
"code": "https://github.com/node-red/node-red"
|
"code": "https://github.com/node-red/node-red",
|
||||||
|
"cpe": "cpe:2.3:a:nodered:node-red-dashboard"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"maintainer": {
|
"maintainer": {
|
||||||
|
@ -53,4 +54,4 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue