mirror of
https://github.com/YunoHost-Apps/adguardhome_ynh.git
synced 2024-09-03 18:06:23 +02:00
Merge pull request #152 from YunoHost-Apps/testing
Testing 0.107.43~ynh2
This commit is contained in:
commit
b28f15325a
5 changed files with 50 additions and 14 deletions
|
@ -21,7 +21,7 @@ AdGuard Home is a network-wide software for blocking ads & tracking. After you s
|
|||
It operates as a DNS server that re-routes tracking domains to a "black hole", thus preventing your devices from connecting to those servers. It's based on software we use for our public AdGuard DNS servers -- both share a lot of common code.
|
||||
|
||||
|
||||
**Shipped version:** 0.107.43~ynh1
|
||||
**Shipped version:** 0.107.43~ynh2
|
||||
|
||||
## Screenshots
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ AdGuard Home est un logiciel à l'échelle du réseau pour bloquer les publicit
|
|||
Il fonctionne comme un serveur DNS qui redirige les domaines de pistage vers un "trou noir", empêchant ainsi vos appareils de se connecter à ces serveurs. Il est basé sur un logiciel que nous utilisons pour nos serveurs DNS publics AdGuard - les deux partagent beaucoup de code commun.
|
||||
|
||||
|
||||
**Version incluse :** 0.107.43~ynh1
|
||||
**Version incluse :** 0.107.43~ynh2
|
||||
|
||||
## Captures d’écran
|
||||
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
||||
location __PATH__/ {
|
||||
|
||||
proxy_pass http://127.0.0.1:__PORT__/;
|
||||
proxy_pass http://127.0.0.1:__PORT__/;
|
||||
proxy_redirect / __PATH__/;
|
||||
proxy_cookie_path / __PATH__/;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Host $server_name;
|
||||
proxy_set_header X-Remote-User $remote_user;
|
||||
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Host $server_name;
|
||||
proxy_set_header X-Remote-User $remote_user;
|
||||
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
|
@ -25,7 +25,14 @@ location /dns-query {
|
|||
proxy_redirect off;
|
||||
proxy_buffering on;
|
||||
proxy_http_version 1.1;
|
||||
proxy_read_timeout 6s;
|
||||
proxy_connect_timeout 6s;
|
||||
proxy_pass http://127.0.0.1:__PORT__/dns-query;
|
||||
proxy_read_timeout 6s;
|
||||
proxy_connect_timeout 6s;
|
||||
proxy_pass http://127.0.0.1:__PORT__/dns-query;
|
||||
}
|
||||
|
||||
# disabling the API point of the built-in updater (which can break the installation)
|
||||
# so the user must update using the YNH package
|
||||
location __PATH__/control/update {
|
||||
return 403 "<!DOCTYPE html><title>403 Forbidden</title><style>body{width:35em;margin:0 auto;font-family:Tahoma,Verdana,Arial,sans-serif}</style><h1>403 Forbidden</h1><p>AdGuard Home's built-in update function is disabled by YunoHost.<p>You must update AdGuard Home via YunoHost.<p>If the update is not yet available, please be patient. Thank you!";
|
||||
default_type text/html;
|
||||
}
|
||||
|
|
|
@ -15,5 +15,34 @@ Restart=always
|
|||
RestartSec=10
|
||||
#EnvironmentFile=-/etc/sysconfig/AdGuardHome
|
||||
|
||||
# Sandboxing options to harden security
|
||||
# Details for these options: https://www.freedesktop.org/software/systemd/man/systemd.exec.html
|
||||
NoNewPrivileges=no
|
||||
PrivateTmp=yes
|
||||
PrivateDevices=no
|
||||
RestrictNamespaces=no
|
||||
RestrictRealtime=no
|
||||
DevicePolicy=closed
|
||||
ProtectClock=no
|
||||
ProtectHostname=no
|
||||
ProtectProc=invisible
|
||||
ProtectSystem=full
|
||||
ProtectControlGroups=yes
|
||||
ProtectKernelModules=no
|
||||
ProtectKernelTunables=no
|
||||
LockPersonality=no
|
||||
SystemCallFilter=
|
||||
|
||||
# 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_SYS_ADMIN CAP_SYS_PTRACE CAP_SYSLOG
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
|
|
@ -5,7 +5,7 @@ description.fr = "Serveur DNS, bloqueur de publicités et trackers"
|
|||
id = "adguardhome"
|
||||
name = "AdGuard Home"
|
||||
|
||||
version = "0.107.43~ynh1"
|
||||
version = "0.107.43~ynh2"
|
||||
|
||||
maintainers = ["ddataa"]
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue