Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | [ ocspd ] |
michael@0 | 2 | |
michael@0 | 3 | default_ocspd = OCSPD_default |
michael@0 | 4 | |
michael@0 | 5 | [ OCSPD_default ] |
michael@0 | 6 | |
michael@0 | 7 | dir = @DIR@ |
michael@0 | 8 | db = $dir/index.txt |
michael@0 | 9 | md = sha1 |
michael@0 | 10 | |
michael@0 | 11 | ca_certificate = $dir/@CA_CERT@ |
michael@0 | 12 | ocspd_certificate = $dir/@CA_CERT@ |
michael@0 | 13 | ocspd_key = $dir/@CA_KEY@ |
michael@0 | 14 | pidfile = $dir/@OCSP_PID@ |
michael@0 | 15 | |
michael@0 | 16 | user = nobody |
michael@0 | 17 | group = nobody |
michael@0 | 18 | |
michael@0 | 19 | bind = * |
michael@0 | 20 | port = @PORT@ |
michael@0 | 21 | |
michael@0 | 22 | max_req_size = 8192 |
michael@0 | 23 | threads_num = 150 |
michael@0 | 24 | max_timeout_secs = 5 |
michael@0 | 25 | crl_auto_reload = 3600 |
michael@0 | 26 | crl_check_validity = 600 |
michael@0 | 27 | crl_reload_expired = yes |
michael@0 | 28 | response = ocsp_response |
michael@0 | 29 | dbms = dbms_file |
michael@0 | 30 | |
michael@0 | 31 | [ ocsp_response ] |
michael@0 | 32 | |
michael@0 | 33 | dir = @DIR@ |
michael@0 | 34 | next_update_days = 0 |
michael@0 | 35 | next_update_mins = 5 |
michael@0 | 36 | |
michael@0 | 37 | [ dbms_file ] |
michael@0 | 38 | |
michael@0 | 39 | 0.ca = @first_ca |
michael@0 | 40 | |
michael@0 | 41 | [ first_ca ] |
michael@0 | 42 | |
michael@0 | 43 | crl_url = file:///@DIR@/@CA_CRL@ |
michael@0 | 44 | ca_url = file:///@DIR@/@CA_CERT@ |
michael@0 | 45 | server_cert = file:///@DIR@/@CA_CERT@ |
michael@0 | 46 |