NGINX
Notes & Warnings¶
- This is an unsupported configuration created by the community
- Replace
7.3
with the PHP version you installed, e.g. if you're using Raspbian Stretch (Debian 9) replace7.3
with7.0
. - The
php7.3-sqlite3
package must be installed otherwise Networking and Querying will throw an error that it can't access the database.
Basic requirements¶
-
Stop default lighttpd
service lighttpd stop
-
Install necessary packages
apt-get -y install nginx php7.3-fpm php7.3-cgi php7.3-xml php7.3-sqlite3 php7.3-intl apache2-utils
-
Disable lighttpd at startup
systemctl disable lighttpd
-
Enable php7.3-fpm at startup
systemctl enable php7.3-fpm
-
Enable nginx at startup
systemctl enable nginx
-
Edit
/etc/nginx/sites-available/default
to:server { listen 80 default_server; listen [::]:80 default_server; root /var/www/html; server_name _; autoindex off; index pihole/index.php index.php index.html index.htm; location / { expires max; try_files $uri $uri/ =404; } location ~ \.php$ { include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name; fastcgi_pass unix:/run/php/php7.3-fpm.sock; fastcgi_param FQDN true; auth_basic "Restricted"; # For Basic Auth auth_basic_user_file /etc/nginx/.htpasswd; # For Basic Auth } location /*.js { index pihole/index.js; auth_basic "Restricted"; # For Basic Auth auth_basic_user_file /etc/nginx/.htpasswd; # For Basic Auth } location /admin { root /var/www/html; index index.php index.html index.htm; auth_basic "Restricted"; # For Basic Auth auth_basic_user_file /etc/nginx/.htpasswd; # For Basic Auth } location ~ /\.ht { deny all; } }
-
Create a username for authentication for the admin - we don't want other people in our network change our black and whitelist ;)
htpasswd -c /etc/nginx/.htpasswd exampleuser
-
Change ownership of the html directory to nginx user
chown -R www-data:www-data /var/www/html
-
Make sure the html directory is writable
chmod -R 755 /var/www/html
-
Grant the admin panel access to the gravity database
usermod -aG pihole www-data
-
Start php7.3-fpm daemon
service php7.3-fpm start
-
Start nginx web server
service nginx start
Optional configuration¶
-
If you want to use your custom domain to access admin page (e.g.:
http://mydomain.internal/admin/settings.php
instead ofhttp://pi.hole/admin/settings.php
), make suremydomain.internal
is assigned toserver_name
in/etc/nginx/sites-available/default
. E.g.:server_name mydomain.internal;
-
When using nginx to serve Pi-hole, Let's Encrypt can be used to directly configure nginx. Make sure to use your hostname instead of _ in
server_name _;
line above.add-apt-repository ppa:certbot/certbot apt-get install certbot python-certbot-nginx certbot --nginx -m "$email" -d "$domain" -n --agree-tos --no-eff-email