pi-hole:configure_pi-hole_behind_nginx
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
pi-hole:configure_pi-hole_behind_nginx [2020/11/16 18:57] – peter | pi-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. | Pi-hole by default installs **lighttpd** as its web-server. | ||
- | 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 / | ||
+ | ... | ||
+ | server.port | ||
+ | ... | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Restart lighttpd ===== | ||
<code bash> | <code bash> | ||
+ | sudo systemctl restart lighttpd.service | ||
+ | </ | ||
+ | |||
+ | Check lighttpd is running | ||
+ | |||
+ | <code bash> | ||
+ | sudo systemctl status lighttpd.service | ||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Edit NginX Configuration ===== | ||
+ | |||
+ | |||
+ | <file bash / | ||
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; | ||
</ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Restart NginX ===== | ||
+ | |||
+ | <code bash> | ||
+ | sudo systemctl restart nginx.service | ||
+ | </ | ||
+ | |||
+ | |||
+ | Check NginX is running | ||
+ | |||
+ | <code bash> | ||
+ | sudo systemctl status nginx.service | ||
+ | </ | ||
+ | |||
---- | ---- |
pi-hole/configure_pi-hole_behind_nginx.1605553051.txt.gz · Last modified: 2020/11/16 18:57 by peter