Transition from busybox httpd to nginx

This commit is contained in:
Jason Williams
2025-01-09 08:36:17 -07:00
parent 23abff6f5f
commit 66d59073b0
7 changed files with 16 additions and 15 deletions

8
nginx.conf Normal file
View File

@@ -0,0 +1,8 @@
server {
listen 80;
root /www;
location / {
index index.html;
}
}