diff options
author | Stefan Eissing <icing@apache.org> | 2017-09-08 16:55:04 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2017-09-08 16:55:04 +0200 |
commit | 05c77cadd7ae366cb1e6d09d9bf44c0939ae2c51 (patch) | |
tree | 005be5c4c462a1ef48960aa26c95d67c03fa63dc /modules/md/mod_md_config.h | |
parent | On the trunk: (diff) | |
download | apache2-05c77cadd7ae366cb1e6d09d9bf44c0939ae2c51.tar.xz apache2-05c77cadd7ae366cb1e6d09d9bf44c0939ae2c51.zip |
On the trunk:
mod_md: v0.9.2: new directive 'MDHttpProxy' to define a proxy for outgoing connection,
some minor bugfixes, twiddle the build system to avoid non-pic code generation.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1807774 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/md/mod_md_config.h')
-rw-r--r-- | modules/md/mod_md_config.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/md/mod_md_config.h b/modules/md/mod_md_config.h index e5dc4aa6fc..b385509476 100644 --- a/modules/md/mod_md_config.h +++ b/modules/md/mod_md_config.h @@ -30,11 +30,13 @@ typedef enum { MD_CONFIG_RENEW_NORM, MD_CONFIG_RENEW_WINDOW, MD_CONFIG_TRANSITIVE, + MD_CONFIG_PROXY, } md_config_var_t; typedef struct { apr_array_header_t *mds; /* all md_t* defined in the config, shared */ const char *base_dir; /* base dir for store */ + const char *proxy_url; /* proxy url to use (or NULL) */ struct md_store_t *store; /* store instance, singleton, shared */ int local_80; /* On which port http:80 arrives */ |