Changeset 1eaadcd in mod_gnutls


Ignore:
Timestamp:
Apr 8, 2020, 6:16:41 PM (3 years ago)
Author:
Fiona Klute <fiona.klute@…>
Branches:
asyncio, main, master, proxy-ticket
Children:
e2666ba
Parents:
0484b31
Message:

Simplify OCSP responder config using ScriptAlias? instead of mod_rewrite

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/ocsp_server.conf.in

    r0484b31 r1eaadcd  
    66Include         ${srcdir}/cgi_module.conf
    77LoadModule      env_module              ${AP_LIBEXECDIR}/mod_env.so
    8 LoadModule      rewrite_module          ${AP_LIBEXECDIR}/mod_rewrite.so
     8LoadModule      alias_module            ${AP_LIBEXECDIR}/mod_alias.so
    99
    1010# separate log and PID file
     
    2020
    2121<VirtualHost _default_:${OCSP_PORT}>
    22         RewriteEngine   On
    23         RewriteRule     ^/ocsp(.*)      /ocsp.cgi$1     [L]
     22        ScriptAlias /ocsp "${srcdir}/data/ocsp.cgi"
    2423        # General rules for all OCSP handling
    2524        <Location /ocsp/>
     
    4645                SetEnv  OCSP_KEY        ${PWD}/authority/subca/ocsp-responder/secret.key
    4746        </Location>
    48         <Directory ${srcdir}/data>
    49                 Options +ExecCGI
    50         </Directory>
    5147</VirtualHost>
Note: See TracChangeset for help on using the changeset viewer.