RT notifier: parse templates without header correctly
[openxpki.git] / trunk / clients / perl / OpenXPKI-Client-HTML-Mason / eg / openxpki-mason-cgi.conf
blob120e4b590003151befb7be3a5c83da4c19beceb2
2 # Simple Mason CGI configuration via httpd.conf directives.
3 # For production environments, mod_perl is highly recommended, as it
4 # provides a much better performance
7 <LocationMatch "\.html$">
8   Action html-mason /cgi-bin/openxpki.cgi
9   AddHandler html-mason .html
10   AddHandler html-mason .crt
11 </LocationMatch>
13 <LocationMatch "^/cgi-bin/">
14   RemoveHandler .html
15   RemoveHandler .crt
16 </LocationMatch>
18 # Hide private components from users.
19 <FilesMatch "(handler|mhtml)$">
20   Order allow,deny
21   Deny from all
22 </FilesMatch>
24 # you can set the locale prefix and the location of the socket file using
25 # environment variables
26 # SetEnv OPENXPKI_SOCKET_FILE /path/to/your/openxpki.socket
27 # SetEnv OPENXPKI_LOCALE_PREFIX /path/to/your/share/locale
29 # You can also limit this webserver or virtual host to a particular PKI
30 # realm by setting the OPENXPKI_PKI_REALM environment variable:
31 # SetEnv OPENXPKI_PKI_REALM I18N_OPENXPKI_DEPLOYMENT_TEST_DUMMY_CA
33 # If you want to have more than english available on the user interface
34 # (note that the interface currently has not been fully translated to
35 # other languages, so YMMV), you can set the OPENXPKI_LANGUAGES variable:
36 # SetEnv OPENXPKI_LANGUAGES ru,en,de