Jump to content

hna32x

Active Members
  • Posts

    4
  • Joined

  • Last visited

Posts posted by hna32x

  1. This is outdated as from 1.4.0 onward we have moved to nginx - which is MUCH faster than uhttp and also easier to set up in regards to https.

    Best Regards,

    Sebkinne

    Yes, i see nginx in 1.4.1, but uhhtpd is still there also, it's not gone. For now my solution is the only solution published for MARK V.

  2. Final solution...

    Step 0: Install uhttpd-mod-tls

    Step 1: Generate a Private Key by means of openssl utility (Linux)

    openssl genrsa -des3 -out server.key 1024

    Step 2: Generate a CSR (Certificate Signing Request)

    openssl req -new -key server.key -out server.csr

    Step 3: Remove Passphrase from Key

    cp server.key server.key.org

    openssl rsa -in server.key.org -out server.key

    Step 4: Generating a Self-Signed Certificate

    openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt

    Step 5: Installing the Private Key and Certificate

    cp server.crt /etc/uhttpd.crt

    cp server.key /etc/uhttpd.key

    Step 5: Edit /etc/config/uhttpd.conf:

    option home /pineapple

    list listen_https 0.0.0.0:443

    (+comment out any related cert generation options)

    Step 6:/etc/init.d/uhttpd restart

    Step 7: Go to https://172.16.42.1:443/index.php

    P.S. It's not opening index.php automatically on IP:port opening, i can't handle it..

  3. Hello.

    I've noticed that "Site Survey" infusion show incorrect Quality info, cause it's produced from iwlist utility, where the maximum quality is 70, not 100 as it's suggested in infusion interface.

    Small changes to iwlist_parser.php solves the problem.

    I'm not very good at PHP, but here's my way:

    $ergebnis[$device][$cell]['Quality'] = trim(number_format (substr($zeile, $first_eq_pos + 1, $slash_pos - 1) * 100 / 70, 0));

    P.S. I've not found "Site Survey" topic and have made it myself, i hope author of infusion will see it.

    BR, hna32x

×
×
  • Create New...