Changeset e376ed8 in mod_gnutls for test/ocsp_server.conf.in
- Timestamp:
- Nov 29, 2019, 4:30:08 PM (15 months ago)
- Branches:
- asyncio, master, proxy-ticket
- Children:
- 618ee14
- Parents:
- d4c9331 (diff), 556783e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/ocsp_server.conf.in
rd4c9331 re376ed8 22 22 RewriteEngine On 23 23 RewriteRule ^/ocsp(.*) /ocsp.cgi$1 [L] 24 # General rules for all OCSP handling 24 25 <Location /ocsp/> 25 26 # Some clients seem to have trouble with chunked 26 27 # encoding, so force HTTP/1.0 for now. 27 28 SetEnv downgrade-1.0 29 <If "-n osenv('OPENSSL')"> 30 # Pass OPENSSL variable to CGI script if set 31 SetEnv OPENSSL ${OPENSSL} 32 </If> 33 </Location> 34 <Location /ocsp/authority/> 28 35 # certificates and key for ocsp.cgi 29 36 SetEnv CA_CERT ${PWD}/authority/x509.pem … … 31 38 SetEnv OCSP_CERT ${PWD}/authority/ocsp-responder/x509.pem 32 39 SetEnv OCSP_KEY ${PWD}/authority/ocsp-responder/secret.key 33 <If "-n osenv('OPENSSL')"> 34 # Pass OPENSSL variable to CGI script if set 35 SetEnv OPENSSL ${OPENSSL} 36 </If> 40 </Location> 41 <Location /ocsp/authority/subca/> 42 # certificates and key for ocsp.cgi 43 SetEnv CA_CERT ${PWD}/authority/subca/x509.pem 44 SetEnv OCSP_INDEX ${PWD}/authority/subca/ocsp_index.txt 45 SetEnv OCSP_CERT ${PWD}/authority/subca/ocsp-responder/x509.pem 46 SetEnv OCSP_KEY ${PWD}/authority/subca/ocsp-responder/secret.key 37 47 </Location> 38 48 <Directory ${srcdir}/data>
Note: See TracChangeset
for help on using the changeset viewer.