Have some feedback, questions, suggestions, or just fancy a chat? Pop it in here.
Deleted User 7758
Post
by Deleted User 7758 » Mon Aug 03, 2020 2:46 am
I started from scratch on my server over the weekend due to too much confusion and problems. So pihole has been freshly installed, but has it been installed into two locations?
Is this correct?
Code: Select all
root@HC1:~# ls -al /var/www/pihole/
total 40
drwxr-xr-x 2 root root 4096 Aug 2 15:57 .
drwxr-xr-x 4 root root 4096 Aug 2 15:57 ..
-rw-r--r-- 1 root root 13072 Aug 2 15:57 blockingpage.css
-rw-r--r-- 1 root root 14761 Aug 2 15:57 index.php
root@HC1:~# ls -al /var/www/html/pihole/
total 40
drwxr-xr-x 2 root root 4096 Aug 2 15:57 .
drwxr-xr-x 4 root root 4096 Aug 2 15:57 ..
-rw-r--r-- 1 root root 13072 Aug 2 15:57 blockingpage.css
-rw-r--r-- 1 root root 14761 Aug 2 15:57 index.php
Joulinar
Posts: 4176 Joined: Sat Nov 16, 2019 12:49 am
Post
by Joulinar » Mon Aug 03, 2020 2:52 am
yes that should be correct. Usually
/var/www/pihole is a symlinc to
/var/www/html/pihole
Code: Select all
root@DietPi4:~# ls -la /var/www/ |grep pihole
lrwxrwxrwx 1 root root 11 Jan 18 2020 pihole -> html/pihole
root@DietPi4:~#
Pls let us know if a solution is working. This could help others if they hit by similar situation. Your DietPi Team
Deleted User 7758
Post
by Deleted User 7758 » Mon Aug 03, 2020 3:45 am
Thank you @Joulinar