[nginx] Uwsgi: added create_loc_conf comments.

noreply at nginx.com noreply at nginx.com
Tue Nov 12 13:22:02 UTC 2024


details:   https://github.com/nginx/nginx/commit/d10bf73ebad8866918e1e1002855c3a501b92e0c
branches:  master
commit:    d10bf73ebad8866918e1e1002855c3a501b92e0c
user:      Sergey Kandaurov <pluknet at nginx.com>
date:      Tue, 8 Oct 2024 18:24:34 +0400
description:
Uwsgi: added create_loc_conf comments.


---
 src/http/modules/ngx_http_uwsgi_module.c | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/src/http/modules/ngx_http_uwsgi_module.c b/src/http/modules/ngx_http_uwsgi_module.c
index 2af5a930a..9e9682bc3 100644
--- a/src/http/modules/ngx_http_uwsgi_module.c
+++ b/src/http/modules/ngx_http_uwsgi_module.c
@@ -1511,6 +1511,28 @@ ngx_http_uwsgi_create_loc_conf(ngx_conf_t *cf)
         return NULL;
     }
 
+    /*
+     * set by ngx_pcalloc():
+     *
+     *     conf->upstream.bufs.num = 0;
+     *     conf->upstream.ignore_headers = 0;
+     *     conf->upstream.next_upstream = 0;
+     *     conf->upstream.cache_zone = NULL;
+     *     conf->upstream.cache_use_stale = 0;
+     *     conf->upstream.cache_methods = 0;
+     *     conf->upstream.temp_path = NULL;
+     *     conf->upstream.hide_headers_hash = { NULL, 0 };
+     *     conf->upstream.store_lengths = NULL;
+     *     conf->upstream.store_values = NULL;
+     *
+     *     conf->uwsgi_string = { 0, NULL };
+     *     conf->ssl = 0;
+     *     conf->ssl_protocols = 0;
+     *     conf->ssl_ciphers = { 0, NULL };
+     *     conf->ssl_trusted_certificate = { 0, NULL };
+     *     conf->ssl_crl = { 0, NULL };
+     */
+
     conf->modifier1 = NGX_CONF_UNSET_UINT;
     conf->modifier2 = NGX_CONF_UNSET_UINT;
 


More information about the nginx-devel mailing list