Files
Calix/firmware-pusher/nginx.conf
T
astromech73 983ddd903b 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
2026-05-21 09:38:51 -05:00

22 lines
479 B
Nginx Configuration File

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;
}
}