You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
427 B

  1. location /cgi-bin/luci {
  2. index index.html;
  3. include uwsgi_params;
  4. uwsgi_param SERVER_ADDR $server_addr;
  5. uwsgi_modifier1 9;
  6. uwsgi_pass unix:////var/run/luci-webui.socket;
  7. }
  8. location ~ /cgi-bin/cgi-(backup|download|upload|exec) {
  9. include uwsgi_params;
  10. uwsgi_param SERVER_ADDR $server_addr;
  11. uwsgi_modifier1 9;
  12. uwsgi_pass unix:////var/run/luci-cgi_io.socket;
  13. }
  14. location /luci-static {
  15. error_log stderr crit;
  16. }