Where is Pi-hole admin page located?

I'm a beginner at linux...

I'm trying to work out that ip-address/pihole goes to the admin page (without touching any pihole config). What I've found is making an apache2 conf file for it with the content:

<IfModule alias_module>

Alias /pihole        /var/www/html/pihole/

        <Directory /var/www/html/pihole/>
                Options +Indexes +Includes +FollowSymLinks +MultiViews
                AllowOverride all
                Require all granted
        </Directory>

</IfModule>

Unfortunately it seems like said path is directed only to the blocking page, and I can't find the path to the admin page. Where is it exactly located?

You are close :slight_smile:

The admin path is /var/www/html/admin

Wow, I feel stupid, how did I miss that? Thank you :grinning:

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.