- Ubuntu 18.04+
- Apache 2.4.18 or higher setup as described here https://gist.github.com/GAS85/8dadbcb3c9a7ecbcb6705530c1252831
- OpenSSL 1.0.2g-1ubuntu4.10 or higher
- e.g. LetsEncrypt certificate
Install pihole from the official repo as described here: https://github.com/pi-hole/pi-hole#one-step-automated-install, e.g. via
curl -sSL https://install.pi-hole.net | bash
During the installation please choose to install Web Interface, but to not install a Web Server.
Basically if you already have working apache2 config, just create file e.g. 004-pihole.conf
in a /etc/apache2/sites-available/
with following content:
<IfModule alias_module>
Alias /admin /var/www/html/admin
<Directory "/var/www/html/admin">
AllowOverride None
Options None
Order deny,allow
Allow from 192.168.0.0/24 localhost 127.0.0.1
#Allow from all
Deny from all
</Directory>
</IfModule>
In this case you can only access Pihole from the local network (192.168.0.0/24). If you would like to access from the internet also, please apply following config:
<IfModule alias_module>
Alias /admin /var/www/html/admin
<Directory "/var/www/html/admin">
AllowOverride None
Options None
Order deny,allow
#Allow from 192.168.0.0/24 localhost 127.0.0.1
Allow from all
#Deny from all
</Directory>
</IfModule>
To enable Apache2 config for pihole please run:
a2ensite 004-pihole.conf
Then test our config and reload apache2 if succeed:
sudo apachectl configtest && sudo service apache2 reload
Now you can access your pihole via http(s)://YourIP_or_Domain/admin
If you would like to change you path from http(s)://YourIP_or_Domain/admin
to e.g. http(s)://YourIP_or_Domain/custom
, simply adjust Alias in 004-pihole.conf to expected path:
#Alias /admin /var/www/html/admin
Alias /custom /var/www/html/admin
And added simple rewrite rule (you have to enable apache mod_rewrite via sudo a2enmod rewrite
) to your virtual host e.g. default-ssl.conf
.
#Pihole rewrite link from /admin to /pihole.
RewriteEngine on
RewriteRule "^/admin/(.*)" "/custom/$2" [R]
Then test our config and reload apache2 if succeed:
sudo apachectl configtest && sudo service apache2 reload
Now you can access your pihole via http(s)://YourIP_or_Domain/custom
Hello.
I install apache 2 and php for setting up a web server. The web server is working fine. Then I installed Pihole and install Web Interface, but opted not to install a Web Server. After the completion of the setup. I created a pihole.conf in /etc/apache2/sites-available/ folder and paste the text as below
Alias /admin /var/www/html/admin AllowOverride None Options None Order deny,allow Allow from 192.168.0.5/24 localhost 127.0.0.1 #Allow from all Deny from allafter saving the file ran commands
a2ensite pihole.conf
sudo apachectl configtest && sudo service apache2 reload
After this I am able to access the Pihole webadmin from http://192.168.1.5/admin.
The pihole is also working but dashboard is not showing any statics. I can go to query log page and see the pihole is blocking ads etc but why I am not able to see anything in the dashboard.
I have selected to show all information .
Please help.
Hoping for your help and reply