User Tools

Site Tools


pi-hole:configure_pi-hole_behind_nginx

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
pi-hole:configure_pi-hole_behind_nginx [2020/11/16 18:57] peterpi-hole:configure_pi-hole_behind_nginx [2020/11/16 19:09] (current) peter
Line 8: Line 8:
 Pi-hole by default installs **lighttpd** as its web-server.  This **lighttpd** server usually handles and web traffic to Port 80, and the admin dashboard for pi-hole can be accessed using the IP of the device it is installed on, such as http://192.168.1.25/admin/. Pi-hole by default installs **lighttpd** as its web-server.  This **lighttpd** server usually handles and web traffic to Port 80, and the admin dashboard for pi-hole can be accessed using the IP of the device it is installed on, such as http://192.168.1.25/admin/.
  
-But with NginX installed onto this device, means that it is actually NginX that would process any web traffic to Port 80; and therefore this would result in a conflict in that lighttpd would not be able to process Port 80 as well.+But with **NginX** installed onto this device, means that it is actually NginX that would process any web traffic to Port 80; and therefore this would result in a conflict in that lighttpd would not be able to process Port 80 as well.
  
 The solution is to keep lighttpd running on an alternate port (such as 81) and let NginX proxy all requests to pi-hole to that port. The solution is to keep lighttpd running on an alternate port (such as 81) and let NginX proxy all requests to pi-hole to that port.
 +
 +----
 +
 +===== Change the server port for lighttpd =====
 +
 +<file bash /etc/lighttpd/lighttpd.conf>
 +...
 +server.port                 = 81
 +...
 +</file>
 +
 +----
 +
 +===== Restart lighttpd =====
  
 <code bash> <code bash>
 +sudo systemctl restart lighttpd.service
 +</code>
 +
 +Check lighttpd is running
 +
 +<code bash>
 +sudo systemctl status lighttpd.service
 +</code>
 +
 +
 +----
 +
 +===== Edit NginX Configuration =====
 +
 +
 +<file bash /etc/nginx/sites-available/pi.hole>
 server { server {
   listen 80;   listen 80;
Line 39: Line 69:
   }   }
 } }
-</code>+</file>
  
  
Line 50: Line 80:
 proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;
 </file> </file>
 +
 +----
 +
 +===== Restart NginX =====
 +
 +<code bash>
 +sudo systemctl restart nginx.service
 +</code>
 +
 +
 +Check NginX is running
 +
 +<code bash>
 +sudo systemctl status nginx.service
 +</code>
 +
  
 ---- ----
pi-hole/configure_pi-hole_behind_nginx.1605553051.txt.gz · Last modified: 2020/11/16 18:57 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki