Initial commit: firmware pusher app, GenieACS docs, network file

- firmware-pusher/: standalone HTML app for GenieACS firmware pushes
- genieacs/: NBI API usage, device IDs, troubleshooting
- calix_home_network.txt: live network documentation
This commit is contained in:
astromech73
2026-05-21 09:38:51 -05:00
commit 983ddd903b
7 changed files with 738 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location = / {
auth_basic "GenieACS Firmware Pusher";
auth_basic_user_file /etc/nginx/.htpasswd;
try_files /index.html =404;
}
location = /index.html {
return 404;
}
location / {
auth_basic "GenieACS Firmware Pusher";
auth_basic_user_file /etc/nginx/.htpasswd;
try_files $uri $uri/ /index.html?$query_string =404;
}
}