- Catalina
- Big Sur
- Monterey
- Ventura
- Sonoma
People
![]() :bowtie: |
π :smile: |
π :laughing: |
---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define NGX_HTTP_AUTH_DIGEST_CLEANUP_INTERVAL 3000 | |
ngx_event_t *ngx_http_auth_digest_cleanup_timer; | |
static ngx_atomic_t *ngx_http_auth_digest_cleanup_lock; | |
// set as the "init process" callback in the ngx_module_t struct | |
static ngx_int_t ngx_http_auth_digest_worker_init(ngx_cycle_t *cycle){ | |
if (ngx_process != NGX_PROCESS_WORKER){ | |
return NGX_OK; | |
} |