Skip to content
View ursuleacv's full-sized avatar

Block or report ursuleacv

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. oauth2-lightspeed oauth2-lightspeed Public

    LightSpeed Provider for OAuth 2.0 Client

    PHP 6 3

  2. oauth2-vend oauth2-vend Public

    Vend Provider for OAuth 2.0 Client

    PHP 2

  3. wallaby wallaby Public

    A simple lightweight framework for building small apps in PHP

    PHP 1

  4. Node js Prime function Node js Prime function
    1
    prime = function (val) {
    2
      if (val === 1) return false;
    3
      else if (val === 2) return true;
    4
      else if (val !== undefined) {
    5
        var start = 1;
  5. Adjusting child processes for PHP-FP... Adjusting child processes for PHP-FPM (Nginx)
    1
    Alternate way to find php-fpm size in human readable format.
    2
    ps -eo size,pid,user,command --sort -size | awk '{ hr=$1/1024 ; printf("%13.2f Mb ",hr) } { for ( x=4 ; x<=NF ; x++ ) { printf("%s ",$x) } print "" }' | grep php-fpm
    3
    
                  
    4
    pm.max_children = Total RAM dedicated to the web server / MAXIMUM child process size - in my case it was 85MB
    5
    
                  
  6. nginx config tuning for best perform... nginx config tuning for best performance and security
    1
    https://www.owasp.org/index.php/SCG_WS_nginx#SSL_Module
    2
    
                  
    3
    https://github.com/denji/nginx-tuning
    4
    
                  
    5
    https://gist.github.com/plentz/6737338