This article shows necessary and additional parameters to use the GUI at an Apache Server.
Parameters to use the GUI on an Apache-Server
This changes have to be done in the httpd-config-file:
# Port and Path
Listen PORT
Alias /dci "/var/dci/"
<Directory "/var/dci">
Options None
AllowOverride None
Order allow,deny
Allow from all
CharsetSourceEnc IBM-1047
CharsetDefault ISO8859-1
AddEncoding text/html html
AddType text/html .html
AddEncoding text/javascript js
AddType text/javascript .js
AddEncoding text/xml xml
AddType text/xml .xml
AddEncoding text/csv csv
AddType text/csv .csv
</Directory>
After upgrade the system to z/OS V 2.2 or later you have to modify this parameters:
<Directory "/var/zdc">
Options None
AllowOverride None
Require all granted
CharsetSourceEnc IBM-1047
CharsetDefault ISO8859-1
# AddEncoding text/html html
AddType text/html .html
# AddEncoding text/javascript js
AddType text/javascript .js
# AddEncoding text/xml xml
AddType text/xml .xml
# AddEncoding text/csv csv
AddType text/csv .csv
</Directory>
This is for customer which use an Apache Server.