From 9e669d416e20ea13c4aa17dd5dc08da656e85e85 Mon Sep 17 00:00:00 2001 From: menschenfresser Date: Fri, 27 Feb 2026 15:35:37 +0700 Subject: [PATCH] Update x-ui.sh deleted 'sudo' --- x-ui.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/x-ui.sh b/x-ui.sh index 2f7f63cd..8ede0aa4 100644 --- a/x-ui.sh +++ b/x-ui.sh @@ -1763,14 +1763,14 @@ create_honeypot() { """ >> /etc/apache2/sites-available/spacesaver.conf # Restarting apache server - sudo systemctl reload apache2 + systemctl reload apache2 # Access rights to HoneyPot's files - sudo chown -R www-data:www-data /var/www/html/SpaceSaver - sudo chmod -R 755 /var/www/html/SpaceSaver + chown -R www-data:www-data /var/www/html/SpaceSaver + chmod -R 755 /var/www/html/SpaceSaver chmod 644 /var/www/html/SpaceSaver/index.html - sudo systemctl reload apache2 + systemctl reload apache2 echo -e "${green}${plain}Done!" echo -e "${green}${plain}Available here -> http://$server_ip:80"