fix nginx includes

This commit is contained in:
Mark 2022-03-29 14:50:01 +01:00
parent f481bf50ce
commit 5a03e3cf79
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ Say I have eth0 and want network access (and an IP via DHCP) from my router; I w
sudo -s # Drop to root.
cp -rv eth0* /etc/systemd/network/ # Copy the files.
cat examples/dhcp.conf >> eth0.network # Append example dhcp to eth0.network
cat examples/dhcp.conf >> /etc/systemd/network/eth0.network # Append example dhcp to eth0.network
systemctl enable --now systemd-networkd # Enable networkd now.

View File

@ -107,7 +107,7 @@ server {
}
# Include extra files if needed.
include conf.d/default-*.conf;
include conf.d/default-*.inc;
}
NGX